[apps] Bump MCP tool call timeout. (#12405)

- [x] Bump MCP tool call timeout.
This commit is contained in:
Matthew Zeng
2026-02-20 17:35:07 -08:00
committed by GitHub
Unverified
parent a5d0757ed1
commit 36a2a9fdbb
+1 -1
View File
@@ -92,7 +92,7 @@ const MAX_TOOL_NAME_LENGTH: usize = 64;
pub const DEFAULT_STARTUP_TIMEOUT: Duration = Duration::from_secs(10);
/// Default timeout for individual tool calls.
const DEFAULT_TOOL_TIMEOUT: Duration = Duration::from_secs(60);
const DEFAULT_TOOL_TIMEOUT: Duration = Duration::from_secs(120);
const CODEX_APPS_TOOLS_CACHE_SCHEMA_VERSION: u8 = 1;
const CODEX_APPS_TOOLS_CACHE_DIR: &str = "cache/codex_apps_tools";