Hello! Currently looking at trying out this project to reduce clickops 😄
Ran into an error when running the example in standalone mode
[ERROR] TypeError: can only concatenate str (not "set") to str
Traceback (most recent call last):
File "/var/task/app.py", line 199, in handler_standalone
event_json["logGroup"]
This appears to be due to the concatenation of trail_event_origin being a mix of strings and sets. The message payload looks something like this
Hello! Currently looking at trying out this project to reduce clickops 😄
Ran into an error when running the example in standalone mode
This appears to be due to the concatenation of
trail_event_origin
being a mix of strings and sets. The message payload looks something like thisInstead - i think the concatination should look something like
I've manually the change on my test account and it seems to be working OK 😄
Thanks!