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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
宝玉的分享
宝玉的分享
量子位
V
Visual Studio Blog
罗磊的独立博客
Vercel News
Vercel News
B
Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
GbyAI
GbyAI
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
test: retry Claude capacity failures in live backend · op...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -70,6 +70,43 @@ function logCliBackendLiveStep(step: string, details?: Record<string, unknown>):

7070

console.error(`[gateway-cli-live] ${step}${suffix}`);

7171

}

727273+

function sleep(ms: number): Promise<void> {

74+

return new Promise((resolve) => setTimeout(resolve, ms));

75+

}

76+77+

function isProviderCapacityError(error: unknown): boolean {

78+

const message = error instanceof Error ? `${error.name}: ${error.message}` : String(error);

79+

const normalized = message.toLowerCase();

80+

return (

81+

normalized.includes("529") &&

82+

(normalized.includes("overloaded") || normalized.includes("capacity"))

83+

);

84+

}

85+86+

async function requestWithProviderCapacityRetry<T>(

87+

providerId: string,

88+

label: string,

89+

request: () => Promise<T>,

90+

): Promise<T | undefined> {

91+

const maxAttempts = providerId === "claude-cli" ? 3 : 1;

92+

for (let attempt = 1; attempt <= maxAttempts; attempt += 1) {

93+

try {

94+

return await request();

95+

} catch (error) {

96+

if (!isProviderCapacityError(error) || attempt >= maxAttempts) {

97+

if (providerId === "claude-cli" && isProviderCapacityError(error)) {

98+

console.warn(`SKIP: ${label} skipped because Claude API stayed overloaded.`);

99+

return undefined;

100+

}

101+

throw error;

102+

}

103+

logCliBackendLiveStep("provider-capacity-retry", { label, attempt });

104+

await sleep(15_000 * attempt);

105+

}

106+

}

107+

return undefined;

108+

}

109+73110

async function createMcpSchemaProbePlugin(tempDir: string): Promise<string> {

74111

const pluginDir = path.join(tempDir, MCP_SCHEMA_PROBE_PLUGIN_ID);

75112

await fs.mkdir(pluginDir, { recursive: true });

@@ -310,21 +347,26 @@ describeLive("gateway live (cli backend)", () => {

310347

const memoryNonce = randomBytes(3).toString("hex").toUpperCase();

311348

const memoryToken = `CLI-MEM-${memoryNonce}`;

312349

logCliBackendLiveStep("agent-request:start", { sessionKey, nonce });

313-

const payload = await client.request(

314-

"agent",

315-

{

316-

sessionKey,

317-

idempotencyKey: `idem-${randomUUID()}`,

318-

message: enableCliModelSwitchProbe

319-

? `Please include the token CLI-BACKEND-${nonce} in your reply.` +

320-

` Also remember this session note for later: ${memoryToken}.` +

321-

" Do not include the note in your reply."

322-

: `Please include the token CLI-BACKEND-${nonce} in your reply.`,

323-

deliver: false,

324-

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

325-

},

326-

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

350+

const payload = await requestWithProviderCapacityRetry(providerId, "agent request", () =>

351+

client.request(

352+

"agent",

353+

{

354+

sessionKey,

355+

idempotencyKey: `idem-${randomUUID()}`,

356+

message: enableCliModelSwitchProbe

357+

? `Please include the token CLI-BACKEND-${nonce} in your reply.` +

358+

` Also remember this session note for later: ${memoryToken}.` +

359+

" Do not include the note in your reply."

360+

: `Please include the token CLI-BACKEND-${nonce} in your reply.`,

361+

deliver: false,

362+

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

363+

},

364+

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

365+

),

327366

);

367+

if (!payload) {

368+

return;

369+

}

328370

if (payload?.status !== "ok") {

329371

throw new Error(`agent status=${String(payload?.status)}`);

330372

}

@@ -367,20 +409,28 @@ describeLive("gateway live (cli backend)", () => {

367409

`sessions.patch failed for model switch: ${JSON.stringify(patchPayload)}`,

368410

);

369411

}

370-

const switchPayload = await client.request(

371-

"agent",

372-

{

373-

sessionKey,

374-

idempotencyKey: `idem-${randomUUID()}`,

375-

message:

376-

"We just switched from Claude Sonnet to Claude Opus in the same session. " +

377-

`What session note did I ask you to remember earlier? ` +

378-

`Reply with exactly: CLI backend SWITCH OK ${switchNonce} <remembered-note>.`,

379-

deliver: false,

380-

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

381-

},

382-

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

412+

const switchPayload = await requestWithProviderCapacityRetry(

413+

providerId,

414+

"agent model-switch request",

415+

() =>

416+

client.request(

417+

"agent",

418+

{

419+

sessionKey,

420+

idempotencyKey: `idem-${randomUUID()}`,

421+

message:

422+

"We just switched from Claude Sonnet to Claude Opus in the same session. " +

423+

`What session note did I ask you to remember earlier? ` +

424+

`Reply with exactly: CLI backend SWITCH OK ${switchNonce} <remembered-note>.`,

425+

deliver: false,

426+

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

427+

},

428+

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

429+

),

383430

);

431+

if (!switchPayload) {

432+

return;

433+

}

384434

if (switchPayload?.status !== "ok") {

385435

throw new Error(`switch status=${String(switchPayload?.status)}`);

386436

}

@@ -395,20 +445,28 @@ describeLive("gateway live (cli backend)", () => {

395445

} else if (CLI_RESUME) {

396446

const resumeNonce = randomBytes(3).toString("hex").toUpperCase();

397447

logCliBackendLiveStep("agent-resume:start", { sessionKey, resumeNonce });

398-

const resumePayload = await client.request(

399-

"agent",

400-

{

401-

sessionKey,

402-

idempotencyKey: `idem-${randomUUID()}`,

403-

message:

404-

providerId === "codex-cli"

405-

? `Please include the token CLI-RESUME-${resumeNonce} in your reply.`

406-

: `Reply with exactly: CLI backend RESUME OK ${resumeNonce}.`,

407-

deliver: false,

408-

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

409-

},

410-

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

448+

const resumePayload = await requestWithProviderCapacityRetry(

449+

providerId,

450+

"agent resume request",

451+

() =>

452+

client.request(

453+

"agent",

454+

{

455+

sessionKey,

456+

idempotencyKey: `idem-${randomUUID()}`,

457+

message:

458+

providerId === "codex-cli"

459+

? `Please include the token CLI-RESUME-${resumeNonce} in your reply.`

460+

: `Reply with exactly: CLI backend RESUME OK ${resumeNonce}.`,

461+

deliver: false,

462+

timeout: CLI_BACKEND_AGENT_TIMEOUT_SECONDS,

463+

},

464+

{ expectFinal: true, timeoutMs: CLI_BACKEND_REQUEST_TIMEOUT_MS },

465+

),

411466

);

467+

if (!resumePayload) {

468+

return;

469+

}

412470

if (resumePayload?.status !== "ok") {

413471

throw new Error(`resume status=${String(resumePayload?.status)}`);

414472

}