Skip to content

Commit

Permalink
Bugfix: Correction of a missing parameter to method call.
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankD412 committed Jun 1, 2018
1 parent 8035e8d commit 5096749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maestrowf/datastructures/core/executiongraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def execute_ready_steps(self):
"Step '%s' timed out. Restarting (%s of %s).",
name, record.restarts, record.restart_limit
)
self._execute_record(record, restart=True)
self._execute_record(record, adapter, restart=True)
else:
logger.info("'%s' has been restarted %s of %s times. "
"Marking step and all descendents as "
Expand Down

0 comments on commit 5096749

Please sign in to comment.