From 35fc58eaaa332df31b7e10d56156969a2e4536a5 Mon Sep 17 00:00:00 2001 From: claude code agent 227 Date: Tue, 23 Jun 2026 04:09:10 +0300 Subject: [PATCH] fix(ai-http): fail fast + retry on provider header stall (#140) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The z.ai GLM coding endpoint intermittently accepts the chat request but never sends response headers; undici's default 300s headersTimeout then hung the user for five minutes before failing, and UND_ERR_HEADERS_TIMEOUT was not in the RetryAgent's retried error set, so there was no recovery. headersTimeout only bounds time-to-FIRST-headers (before any body) — it is NOT the streaming budget, so lowering it does not truncate live SSE streams. Cap it (env AI_HTTP_HEADERS_TIMEOUT_MS, default 60s) so a header stall fails fast, and add UND_ERR_HEADERS_TIMEOUT to the retried error codes so the stalled request is retried on a fresh connection (which usually responds in seconds). bodyTimeout kept generous (env AI_HTTP_BODY_TIMEOUT_MS, default 300s) so slow streams with sparse chunks survive. UND_ERR_BODY_TIMEOUT is deliberately NOT retried (mid-body, partial SSE already delivered). Co-Authored-By: Claude Opus 4.8 --- apps/server/src/integrations/ai/ai-http.ts | 32 ++++++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/apps/server/src/integrations/ai/ai-http.ts b/apps/server/src/integrations/ai/ai-http.ts index 650c5f60..403b0f7d 100644 --- a/apps/server/src/integrations/ai/ai-http.ts +++ b/apps/server/src/integrations/ai/ai-http.ts @@ -7,7 +7,9 @@ import { Logger } from '@nestjs/common'; * WHY THIS EXISTS * --------------- * Production logs showed the AI chat stream (and title generation) failing with - * `read ECONNRESET` after the AI SDK's own retries were exhausted. The provider + * `read ECONNRESET` after the AI SDK's own retries were exhausted, and + * (z.ai GLM coding endpoint, #140) intermittently stalling without ever sending + * response headers until undici's 300s default cut the request with no retry. The provider * clients were built with NO custom `fetch`, so all outbound LLM traffic used * Node's default global undici agent: default keep-alive pooling and NO * transport-level reconnect on connection resets. `read ECONNRESET` is a TCP RST @@ -41,6 +43,21 @@ import { Logger } from '@nestjs/common'; * error message for that rarer mid-stream case changes. */ +// `headersTimeout` bounds time-to-FIRST-response-headers (before any body). It +// is NOT the streaming budget: once headers arrive the SSE body streams freely, +// unaffected by this value — so it is safe to keep SHORT. Some providers (seen +// with the z.ai GLM coding endpoint, #140) intermittently accept the request but +// never send response headers; undici's 300s default then hangs the user for +// FIVE MINUTES before failing, with no retry. Cap it so a stalled request fails +// FAST and is retried on a fresh connection (the retry usually lands on a healthy +// path and responds in seconds). Env-overridable for ops tuning. +const HEADERS_TIMEOUT_MS = + Number(process.env.AI_HTTP_HEADERS_TIMEOUT_MS) || 60_000; +// `bodyTimeout` bounds the gap BETWEEN streamed body chunks (not total stream +// length). Kept generous so a legitimately slow/thinking model with sparse SSE +// chunks is never killed mid-stream. Env-overridable. +const BODY_TIMEOUT_MS = Number(process.env.AI_HTTP_BODY_TIMEOUT_MS) || 300_000; + const baseAgent = new Agent({ // Cap TCP/TLS connect so a stuck connect fails fast and gets retried instead // of hanging indefinitely. @@ -49,8 +66,11 @@ const baseAgent = new Agent({ // a stale/half-closed socket can be reused, which is exactly the condition // that produces `read ECONNRESET`. Do NOT raise this. keepAliveTimeout: 4_000, - // Do NOT override headersTimeout/bodyTimeout — keep undici defaults so - // long-lived SSE streaming responses are not killed mid-stream. + // Short time-to-headers (see HEADERS_TIMEOUT_MS) so a header stall fails fast + // and gets retried; generous per-chunk body timeout so real streams survive + // (see BODY_TIMEOUT_MS). Lowering headersTimeout does NOT truncate streams. + headersTimeout: HEADERS_TIMEOUT_MS, + bodyTimeout: BODY_TIMEOUT_MS, }); const dispatcher: Dispatcher = new RetryAgent(baseAgent, { @@ -80,6 +100,12 @@ const dispatcher: Dispatcher = new RetryAgent(baseAgent, { 'EHOSTDOWN', 'EHOSTUNREACH', 'UND_ERR_SOCKET', + // Added (NOT in undici's default set): a header timeout fires BEFORE any + // response body, so retrying is clean (no partially-consumed stream / Range + // problem) — and it is exactly the z.ai stall mode (#140), where a fresh + // retry usually succeeds. We deliberately do NOT retry UND_ERR_BODY_TIMEOUT + // (mid-body; partial SSE already delivered, not safe to resume). + 'UND_ERR_HEADERS_TIMEOUT', 'EPIPE', ], });