Skip to content

Commit 002e499

Browse files
authored
Merge pull request #63 from scott-the-programmer/main
fix: Ensure trail_event_origin is constructed from strings
2 parents ba8dd6e + 4b6fb20 commit 002e499

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clickopsnotifier/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ def handler_standalone(event, context) -> None:
198198
trail_event_origin = (
199199
event_json["logGroup"]
200200
+ ":"
201-
+ {event_json["logStream"]}
201+
+ event_json["logStream"]
202202
+ "\n"
203-
+ {event_json["subscriptionFilters"]}
203+
+ ":".join(event_json["subscriptionFilters"])
204204
)
205205

206206
success = success and __handle_event(

0 commit comments

Comments
 (0)