We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b76c31 commit cf5c288Copy full SHA for cf5c288
simpleflow/swf/executor.py
@@ -343,7 +343,7 @@ def _get_future_from_child_workflow_event(self, event):
343
future.set_finished(json_loads_or_raw(event['result']))
344
elif state == 'failed':
345
future.set_exception(exceptions.TaskFailed(
346
- name=event['name'],
+ name=event['id'],
347
reason=event['reason'],
348
details=event.get('details'),
349
))
@@ -386,7 +386,7 @@ def _get_future_from_lambda_function_event(self, event):
386
387
388
389
390
391
392
0 commit comments