Skip to content

Commit

Permalink
Merge pull request #31 from DARPA-ASKEM/kbirk/taskrunner-progress-fix
Browse files Browse the repository at this point in the history
Fix busted pyhton method call
  • Loading branch information
kbirk committed Apr 22, 2024
2 parents 6f52ee4 + 4c8d040 commit 51656ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/taskrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def write_output(output: dict):
return

# signal to the taskrunner that it should stop consuming progress
self.write_progress_with_timeout(self, {"done": True}, timeout_seconds)
self.write_progress_with_timeout({"done": True}, timeout_seconds)

# otherwise use the output pipe
with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor:
Expand Down

0 comments on commit 51656ca

Please sign in to comment.