Skip to content

Commit a0132d2

Browse files
committed
fix: avoid rare timeouts when simulation is long
1 parent 198cf6d commit a0132d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

run/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def start(self, organization_id, workspace_id, runner_id):
3434
logger.info(f"Started run {run}: {run.id}")
3535
return run
3636

37-
def wait_and_monitor_status(self, organization_id, workspace_id, runner_id, run_id, max_time=60):
37+
def wait_and_monitor_status(self, organization_id, workspace_id, runner_id, run_id, max_time=120):
3838
"""Monitor the execution of a run."""
3939
start_time = time()
4040
while True:

0 commit comments

Comments
 (0)