Skip to content

Commit 7919446

Browse files
authored
Merge pull request #17 from DistributedScience/metadata_values
Send values, not keys, to the metadataID
2 parents da9bbdc + f9392d0 commit 7919446

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)