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

推荐订阅源

博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
罗磊的独立博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
宝玉的分享
宝玉的分享
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
N
Netflix TechBlog - Medium
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
美团技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | 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(e2e): retry Windows kitchen sink probes · openclaw/op...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -292,25 +292,58 @@ async function retryRpcCall(method, params, options) {

292292

function isRetryableGatewayCallError(error) {

293293

const text = error instanceof Error ? error.message : String(error);

294294

return (

295+

isRetryableTransientNetworkError(error) ||

295296

text.includes("gateway starting") ||

296297

text.includes("gateway closed") ||

297298

text.includes("handshake timeout") ||

298-

text.includes("GatewayTransportError") ||

299-

text.includes("ECONNREFUSED") ||

300-

text.includes("fetch failed")

299+

text.includes("GatewayTransportError")

301300

);

302301

}

303302304-

async function fetchJson(url) {

305-

const response = await fetch(url);

306-

const text = await response.text();

307-

let body = null;

308-

try {

309-

body = text ? JSON.parse(text) : null;

310-

} catch {

311-

body = text;

303+

function isRetryableTransientNetworkError(error, seen = new Set()) {

304+

if (!error || seen.has(error)) {

305+

return false;

306+

}

307+

seen.add(error);

308+

const candidate = error;

309+

const message = candidate instanceof Error ? candidate.message : String(candidate);

310+

const code = typeof candidate === "object" && candidate !== null ? candidate.code : undefined;

311+

const text = `${String(code ?? "")} ${message}`;

312+

if (

313+

/\b(?:ECONNRESET|ECONNREFUSED|ETIMEDOUT|EPIPE|EHOSTUNREACH|ENETUNREACH)\b/iu.test(text) ||

314+

/\b(?:fetch failed|socket hang up|connection reset)\b/iu.test(text)

315+

) {

316+

return true;

317+

}

318+

if (typeof candidate === "object" && candidate !== null && "cause" in candidate) {

319+

return isRetryableTransientNetworkError(candidate.cause, seen);

320+

}

321+

return false;

322+

}

323+324+

export async function fetchJson(url, options = {}) {

325+

const attempts = Math.max(1, options.attempts ?? 3);

326+

let lastError;

327+

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

328+

try {

329+

const response = await (options.fetchImpl ?? fetch)(url);

330+

const text = await response.text();

331+

let body = null;

332+

try {

333+

body = text ? JSON.parse(text) : null;

334+

} catch {

335+

body = text;

336+

}

337+

return { ok: response.ok, status: response.status, body };

338+

} catch (error) {

339+

lastError = error;

340+

if (attempt >= attempts || !isRetryableTransientNetworkError(error)) {

341+

throw error;

342+

}

343+

await delay(options.retryDelayMs ?? 250);

344+

}

312345

}

313-

return { ok: response.ok, status: response.status, body };

346+

throw lastError ?? new Error(`fetch ${url} failed`);

314347

}

315348316349

function configureKitchenSink(env, port) {