Skip to content

Commit f9392d0

Browse files
authored
Send values, not keys, to the metadataID
1 parent b1cc49f commit f9392d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

worker/generic-worker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ def runSomething(message):
113113
#group_to_run = message["group"]
114114
#groupkeys = list(group_to_run.keys())
115115
#groupkeys.sort()
116-
#metadataID = '-'.join(groupkeys)
116+
#groupvals = [group_to_run[x] for x in groupkeys]
117+
#metadataID = '-'.join(groupvals)
117118

118119
# Add a handler with
119120
# watchtowerlogger=watchtower.CloudWatchLogHandler(log_group=LOG_GROUP_NAME, stream_name=str(metadataID),create_log_group=False)

0 commit comments

Comments
 (0)