惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: don't classify 400/422 with no body as format error ...
altaywtf · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,13 +1,15 @@

11

import { readErrorName } from "../infra/errors.js";

22

import {

33

classifyFailoverSignal,

4+

isUnclassifiedNoBodyHttpSignal,

45

type FailoverClassification,

56

type FailoverSignal,

67

} from "./pi-embedded-helpers/errors.js";

78

import { isTimeoutErrorMessage } from "./pi-embedded-helpers/errors.js";

89

import type { FailoverReason } from "./pi-embedded-helpers/types.js";

9101011

const ABORT_TIMEOUT_RE = /request was aborted|request aborted/i;

12+

const MAX_FAILOVER_CAUSE_DEPTH = 25;

11131214

export class FailoverError extends Error {

1315

readonly reason: FailoverReason;

@@ -186,11 +188,14 @@ function getErrorMessage(err: unknown): string {

186188

return findErrorProperty(err, readDirectErrorMessage) ?? "";

187189

}

188190189-

function getErrorCause(err: unknown): unknown {

190-

if (!err || typeof err !== "object" || !("cause" in err)) {

191-

return undefined;

192-

}

193-

return (err as { cause?: unknown }).cause;

191+

function normalizeDirectErrorSignal(err: unknown): FailoverSignal {

192+

const message = readDirectErrorMessage(err);

193+

return {

194+

status: readDirectStatusCode(err),

195+

code: readDirectErrorCode(err),

196+

message: message || undefined,

197+

provider: readDirectProvider(err),

198+

};

194199

}

195200196201

function hasTimeoutHint(err: unknown): boolean {

@@ -239,22 +244,109 @@ function normalizeErrorSignal(err: unknown): FailoverSignal {

239244

};

240245

}

241246242-

function resolveFailoverClassificationFromError(err: unknown): FailoverClassification | null {

247+

function getNestedErrorCandidates(err: unknown): unknown[] {

248+

if (!err || typeof err !== "object") {

249+

return [];

250+

}

251+

const candidate = err as { error?: unknown; cause?: unknown };

252+

return [candidate.error, candidate.cause].filter(

253+

(value): value is unknown => value !== undefined && value !== err,

254+

);

255+

}

256+257+

function isFormatClassification(classification: FailoverClassification | null): boolean {

258+

return classification?.kind === "reason" && classification.reason === "format";

259+

}

260+261+

function decideNestedFormatOverride(

262+

candidate: unknown,

263+

inheritedStatus: number | undefined,

264+

seen: Set<object>,

265+

depth: number,

266+

): boolean | null {

267+

if (depth > MAX_FAILOVER_CAUSE_DEPTH) {

268+

return null;

269+

}

270+

if (candidate && typeof candidate === "object") {

271+

if (seen.has(candidate)) {

272+

return null;

273+

}

274+

seen.add(candidate);

275+

}

276+277+

const directSignal = normalizeDirectErrorSignal(candidate);

278+

const nestedCandidates = getNestedErrorCandidates(candidate);

279+

const nestedStatus = directSignal.status ?? inheritedStatus;

280+

const hasDirectMessage = Boolean(directSignal.message?.trim());

281+

if (

282+

hasDirectMessage &&

283+

isUnclassifiedNoBodyHttpSignal({ ...directSignal, status: nestedStatus })

284+

) {

285+

return true;

286+

}

287+

if (hasDirectMessage && (nestedCandidates.length === 0 || classifyFailoverSignal(directSignal))) {

288+

return false;

289+

}

290+

for (const nestedCandidate of nestedCandidates) {

291+

const decision = decideNestedFormatOverride(nestedCandidate, nestedStatus, seen, depth + 1);

292+

if (decision !== null) {

293+

return decision;

294+

}

295+

}

296+

return null;

297+

}

298+299+

function resolveFailoverClassificationFromErrorInternal(

300+

err: unknown,

301+

seen: Set<object>,

302+

depth: number,

303+

): FailoverClassification | null {

304+

if (depth > MAX_FAILOVER_CAUSE_DEPTH) {

305+

return null;

306+

}

307+

if (err && typeof err === "object") {

308+

if (seen.has(err)) {

309+

return null;

310+

}

311+

seen.add(err);

312+

}

243313

if (isFailoverError(err)) {

244314

return {

245315

kind: "reason",

246316

reason: err.reason,

247317

};

248318

}

249319250-

const classification = classifyFailoverSignal(normalizeErrorSignal(err));

320+

const signal = normalizeErrorSignal(err);

321+

const classification = classifyFailoverSignal(signal);

322+

const nestedCandidates = getNestedErrorCandidates(err);

323+251324

if (!classification || classification.kind === "context_overflow") {

252-

// Let wrapped causes override parent timeout/overflow guesses.

253-

const cause = getErrorCause(err);

254-

if (cause && cause !== err) {

255-

const causeClassification = resolveFailoverClassificationFromError(cause);

256-

if (causeClassification) {

257-

return causeClassification;

325+

for (const candidate of nestedCandidates) {

326+

const nestedClassification = resolveFailoverClassificationFromErrorInternal(

327+

candidate,

328+

seen,

329+

depth + 1,

330+

);

331+

if (nestedClassification) {

332+

return nestedClassification;

333+

}

334+

}

335+

}

336+337+

if (isFormatClassification(classification)) {

338+

for (const candidate of nestedCandidates) {

339+

const shouldClearFormat = decideNestedFormatOverride(

340+

candidate,

341+

signal.status,

342+

seen,

343+

depth + 1,

344+

);

345+

if (shouldClearFormat === true) {

346+

return null;

347+

}

348+

if (shouldClearFormat === false) {

349+

break;

258350

}

259351

}

260352

}

@@ -272,6 +364,10 @@ function resolveFailoverClassificationFromError(err: unknown): FailoverClassific

272364

return null;

273365

}

274366367+

function resolveFailoverClassificationFromError(err: unknown): FailoverClassification | null {

368+

return resolveFailoverClassificationFromErrorInternal(err, new Set<object>(), 0);

369+

}

370+275371

export function resolveFailoverReasonFromError(err: unknown): FailoverReason | null {

276372

return failoverReasonFromClassification(resolveFailoverClassificationFromError(err));

277373

}