Compare commits

...

1 Commits

Author SHA1 Message Date
Jiang Bohan
0a1d09db09 fix(codex): bump default exec_command stuck timeout to 3 minutes
The watchdog fires on a "no progress" window, so the default mainly
matters for commands that go fully silent (no outputDelta). Bumping
from 2m → 3m leaves more headroom for legitimately slow silent
commands before treating them as a dropped function_call_output, at
a modest cost to recovery latency.

MUL-2337

Co-authored-by: multica-agent <github@multica.ai>
2026-05-18 15:25:35 +08:00

View File

@@ -37,7 +37,7 @@ const (
// 2026-05-18, MUL-2334). When that happens the model waits forever for
// the missing output; this watchdog ends the turn so the next run can
// recover instead of burning the overall semantic inactivity budget.
defaultCodexExecStuckTimeout = 2 * time.Minute
defaultCodexExecStuckTimeout = 3 * time.Minute
// codexExecStuckCheckInterval is how often the lifecycle loop polls for
// stuck exec calls. Kept short so the watchdog fires close to the