fix: increase web_read timeout from 8s to 30s with retry
Deploy LangGraph Server to Azure Container App / build-and-deploy (push) Failing after 27s
Deploy LangGraph UI to Azure Static Web Apps / build-and-deploy (push) Failing after 42s

8s timeout caused Jina Reader failures on slower sites like news.cn.
Increased to 30s with 2 retries and 1s backoff.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gongzhiyong
2026-04-12 23:38:36 +08:00
co-authored by Claude Opus 4.6
parent 2b614ddef2
commit 257a4412aa
+1 -1
View File
@@ -11,7 +11,7 @@ export const TOOL_CONFIGS: Record<string, ToolConfig> = {
ticket_detail: { timeoutMs: 15_000, maxRetries: 2, backoffMs: 500 },
google_search: { timeoutMs: 10_000, maxRetries: 1 },
web_search: { timeoutMs: 10_000, maxRetries: 1 },
web_read: { timeoutMs: 8_000, maxRetries: 1 },
web_read: { timeoutMs: 30_000, maxRetries: 2, backoffMs: 1000 },
web_search_deep: { timeoutMs: 45_000, maxRetries: 1 },
sandbox_run: { timeoutMs: 15_000, maxRetries: 1 },
code_execute: { timeoutMs: 15_000, maxRetries: 1 },