Skip to content

Commit

Permalink
Increase scheduler cancel_job_tasks timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq authored and berland committed Apr 25, 2024
1 parent fde22e2 commit b5494dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/scheduler/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def _cancel_job_tasks(self) -> None:
task.cancel()
_, pending = await asyncio.wait(
self._job_tasks.values(),
timeout=1.0,
timeout=15.0,
return_when=asyncio.ALL_COMPLETED,
)
for task in pending:
Expand Down

0 comments on commit b5494dc

Please sign in to comment.