Skip to content

Commit 4b6fb20

Browse files
fix: Ensure trail_event_origin is constructed from strings
1 parent ba8dd6e commit 4b6fb20

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)