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 committed Apr 19, 2024
1 parent ba3c68a commit ea34ecc
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 @@ -130,7 +130,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 ea34ecc

Please sign in to comment.