Skip to content

Commit

Permalink
play: increase timeout
Browse files Browse the repository at this point in the history
* Workflows can take substantially longer than 20 seconds to startup.
  • Loading branch information
oliver-sanders committed Aug 29, 2024
1 parent a71ede5 commit 3ed1033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cylc/uiserver/resolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ async def play(
stderr=PIPE,
text=True
)
ret_code = proc.wait(timeout=20)
ret_code = proc.wait(timeout=120)

if ret_code:
# command failed
Expand Down

0 comments on commit 3ed1033

Please sign in to comment.