Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
Switch to wait
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Oct 12, 2023
1 parent 4c4c708 commit 9333040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arcaflow_plugin_wait/arcaflow_plugin_wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def wait(
as well the output structure
"""
start_time = time.time()
self.exit.wait(params.seconds)
time.sleep(params.seconds)
actual_time = time.time() - start_time
return "success", SuccessOutput(
"Waited {:0.2f} seconds after being scheduled to wait for {}"
Expand Down

0 comments on commit 9333040

Please sign in to comment.