From 7eecfeb56adfb49a73ff32360bf338b08b7dbc1a Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 7 Apr 2026 15:47:44 +0000 Subject: [PATCH] bump gate timeout from 600s to 1200s Merge worktree cold-compiles the BFT CRDT crate + all deps which exceeds 600s. 1200s gives enough headroom. Co-Authored-By: Claude Opus 4.6 (1M context) --- server/src/agents/gates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/agents/gates.rs b/server/src/agents/gates.rs index 7679e73f..3dbf1668 100644 --- a/server/src/agents/gates.rs +++ b/server/src/agents/gates.rs @@ -4,7 +4,7 @@ use std::time::Duration; use wait_timeout::ChildExt; /// Maximum time any single test command is allowed to run before being killed. -const TEST_TIMEOUT: Duration = Duration::from_secs(600); // 10 minutes +const TEST_TIMEOUT: Duration = Duration::from_secs(1200); // 20 minutes /// Detect whether the base branch in a worktree is `master` or `main`. /// Falls back to `"master"` if neither is found.