From 58773eea81bd55356c75f9a8906ff320a84947c6 Mon Sep 17 00:00:00 2001 From: Khaliq Date: Thu, 7 May 2026 13:50:54 +0200 Subject: [PATCH] chore(timeout): bump default run wallclock 45m -> 4h The outer process killer was firing before long pipelines (e.g. multi-adapter scaffolds) could finish their per-step work. Per-step budgets remain the meaningful constraint; this is the outer safety net. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/shared/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/constants.ts b/src/shared/constants.ts index ca422f93..67622f07 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -17,7 +17,7 @@ export const DEFAULT_MAX_CONCURRENCY = 4; // exceed the longest sequential path of per-step budgets below so that the // outer process killer never fires before per-step timeouts can do their job. // Per-step timeouts are the meaningful constraint; this is a safety net. -export const DEFAULT_RUN_TIMEOUT_MS = 2_700_000; // 45 min +export const DEFAULT_RUN_TIMEOUT_MS = 14_400_000; // 4 h export const DEFAULT_TIMEOUT_MS = DEFAULT_RUN_TIMEOUT_MS;