Skip to content

Commit

Permalink
Merge pull request #34 from grycap/dev-srisco
Browse files Browse the repository at this point in the history
Fix supervisor event loading with OSCAR worker and re-generate binary
  • Loading branch information
srisco authored Nov 28, 2018
2 parents 0d9637f + 416406f commit 6cee405
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified bin/supervisor
Binary file not shown.
2 changes: 1 addition & 1 deletion src/providers/onpremises/cloud/supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def launch_user_script():

if(__name__ == "__main__"):
if 'OSCAR_EVENT' in os.environ:
f_input = json.loads(os.environ['OSCAR_EVENT'])
f_input = json.loads(str(os.environ['OSCAR_EVENT']))
else:
f_input = json.loads(get_stdin())
print("Received input: {0}".format(f_input))
Expand Down

0 comments on commit 6cee405

Please sign in to comment.