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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

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(gateway): ignore broken pipe crashes · openclaw/openc...
steipete · 2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -68,6 +68,7 @@ Docs: https://docs.openclaw.ai

6868

- CLI/update: install npm global updates into a verified temporary prefix before swapping the package tree into place, preventing mixed old/new installs and stale packaged files from breaking `openclaw update` verification. Thanks @shakkernerd.

6969

- Gateway: skip CLI startup self-respawn for foreground gateway runs so low-memory Linux/Node 24 hosts start through the same path as direct `dist/index.js` without hanging before logs. Fixes #72720. Thanks @sign-2025.

7070

- Google Meet: grant Meet media permissions through browser control and pin local Chrome audio defaults to `BlackHole 2ch`, so joined agents no longer show `Permission needed` or use macOS default audio devices. Thanks @DougButdorf.

71+

- Gateway: treat uncaught broken-pipe stream errors like `EPIPE` as non-fatal so Discord delivery or closed pipes no longer crash the Gateway after a reply is ready.

7172

- Google Meet: route local Chrome joins through OpenClaw browser control instead of raw default Chrome, so agents use the configured OpenClaw browser profile when opening Meet. Thanks @oromeis.

7273

- Plugins/discovery: follow symlinked plugin directories in global and workspace plugin roots while keeping broken links ignored and existing package safety checks in place. Fixes #36754; carries forward #72695 and #63206. Thanks @Quackstro, @ming1523, and @xsfX20.

7374

- Plugins/install: skip test files and directories during install security scans while still force-scanning declared runtime entrypoints, so packaged test mocks no longer block plugin installs. Fixes #66840; carries forward #67050. Thanks @saurabhjain1592 and @Magicray1217.

Original file line numberDiff line numberDiff line change

@@ -356,4 +356,40 @@ describe("runCli exit behavior", () => {

356356

processOnSpy.mockRestore();

357357

}

358358

});

359+
360+

it("does not exit for transient uncaught CLI exceptions", async () => {

361+

buildProgramMock.mockReturnValueOnce({

362+

commands: [{ name: () => "status" }],

363+

parseAsync: vi.fn().mockResolvedValueOnce(undefined),

364+

});

365+
366+

const processOnSpy = vi.spyOn(process, "on");

367+

const consoleWarnSpy = vi.spyOn(console, "warn").mockImplementation(() => {});

368+

const exitSpy = vi.spyOn(process, "exit").mockImplementation(((code?: number) => {

369+

throw new Error(`process.exit(${String(code)})`);

370+

}) as typeof process.exit);

371+
372+

await runCli(["node", "openclaw", "status"]);

373+
374+

const handler = processOnSpy.mock.calls.find(([event]) => event === "uncaughtException")?.[1];

375+

expect(typeof handler).toBe("function");

376+
377+

try {

378+

const epipe = Object.assign(new Error("write EPIPE"), { code: "EPIPE" });

379+

expect(() => (handler as (error: unknown) => void)(epipe)).not.toThrow();

380+

expect(consoleWarnSpy).toHaveBeenCalledWith(

381+

"[openclaw] Non-fatal uncaught exception (continuing):",

382+

expect.stringContaining("write EPIPE"),

383+

);

384+

expect(restoreTerminalStateMock).not.toHaveBeenCalled();

385+

expect(exitSpy).not.toHaveBeenCalled();

386+

} finally {

387+

if (typeof handler === "function") {

388+

process.off("uncaughtException", handler);

389+

}

390+

consoleWarnSpy.mockRestore();

391+

exitSpy.mockRestore();

392+

processOnSpy.mockRestore();

393+

}

394+

});

359395

});

Original file line numberDiff line numberDiff line change

@@ -247,7 +247,11 @@ export async function runCli(argv: string[] = process.argv) {

247247

{ buildProgram },

248248

{ formatUncaughtError },

249249

{ runFatalErrorHooks },

250-

{ installUnhandledRejectionHandler, isUncaughtExceptionHandled },

250+

{

251+

installUnhandledRejectionHandler,

252+

isBenignUncaughtExceptionError,

253+

isUncaughtExceptionHandled,

254+

},

251255

{ restoreTerminalState },

252256

] = await Promise.all([

253257

import("./program.js"),

@@ -266,6 +270,13 @@ export async function runCli(argv: string[] = process.argv) {

266270

if (isUncaughtExceptionHandled(error)) {

267271

return;

268272

}

273+

if (isBenignUncaughtExceptionError(error)) {

274+

console.warn(

275+

"[openclaw] Non-fatal uncaught exception (continuing):",

276+

formatUncaughtError(error),

277+

);

278+

return;

279+

}

269280

console.error("[openclaw] Uncaught exception:", formatUncaughtError(error));

270281

for (const message of runFatalErrorHooks({ reason: "uncaught_exception", error })) {

271282

console.error("[openclaw]", message);

Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ import { runFatalErrorHooks } from "./infra/fatal-error-hooks.js";

66

import { isMainModule } from "./infra/is-main.js";

77

import {

88

installUnhandledRejectionHandler,

9+

isBenignUncaughtExceptionError,

910

isUncaughtExceptionHandled,

1011

} from "./infra/unhandled-rejections.js";

1112

@@ -92,6 +93,13 @@ if (isMain) {

9293

if (isUncaughtExceptionHandled(error)) {

9394

return;

9495

}

96+

if (isBenignUncaughtExceptionError(error)) {

97+

console.warn(

98+

"[openclaw] Non-fatal uncaught exception (continuing):",

99+

formatUncaughtError(error),

100+

);

101+

return;

102+

}

95103

console.error("[openclaw] Uncaught exception:", formatUncaughtError(error));

96104

for (const message of runFatalErrorHooks({ reason: "uncaught_exception", error })) {

97105

console.error("[openclaw]", message);

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

import { describe, expect, it } from "vitest";

22

import {

33

isAbortError,

4+

isBenignUncaughtExceptionError,

45

isTransientNetworkError,

56

isTransientSqliteError,

67

isTransientUnhandledRejectionError,

@@ -258,6 +259,17 @@ describe("isTransientSqliteError", () => {

258259

});

259260
260261

describe("isTransientUnhandledRejectionError", () => {

262+

it("keeps uncaught exception suppression scoped to broken pipes", () => {

263+

const epipe = Object.assign(new Error("write EPIPE"), { code: "EPIPE" });

264+

const sqlite = Object.assign(new Error("database is locked"), { code: "SQLITE_BUSY" });

265+

const network = Object.assign(new Error("connection reset"), { code: "ECONNRESET" });

266+

const generic = new Error("boom");

267+
268+

expect(isBenignUncaughtExceptionError(epipe)).toBe(true);

269+

expect(isBenignUncaughtExceptionError(sqlite)).toBe(false);

270+

expect(isBenignUncaughtExceptionError(network)).toBe(false);

271+

expect(isBenignUncaughtExceptionError(generic)).toBe(false);

272+

});

261273

it("returns true for transient SQLite errors", () => {

262274

const error = Object.assign(new Error("unable to open database file"), {

263275

code: "ERR_SQLITE_ERROR",

Original file line numberDiff line numberDiff line change

@@ -88,6 +88,8 @@ const TRANSIENT_SQLITE_CODES = new Set([

8888
8989

const TRANSIENT_SQLITE_ERRCODES = new Set([5, 6, 10, 14]);

9090
91+

const BENIGN_UNCAUGHT_EXCEPTION_CODES = new Set(["EPIPE", "EIO"]);

92+
9193

const TRANSIENT_NETWORK_MESSAGE_CODE_RE =

9294

/\b(ECONNRESET|ECONNREFUSED|ENOTFOUND|ETIMEDOUT|ESOCKETTIMEDOUT|ECONNABORTED|EPIPE|EHOSTUNREACH|ENETUNREACH|EAI_AGAIN|EPROTO|UND_ERR_CONNECT_TIMEOUT|UND_ERR_DNS_RESOLVE_FAILED|UND_ERR_CONNECT|UND_ERR_SOCKET|UND_ERR_HEADERS_TIMEOUT|UND_ERR_BODY_TIMEOUT)\b/i;

9395

@@ -339,6 +341,16 @@ export function isTransientUnhandledRejectionError(err: unknown): boolean {

339341

return isTransientNetworkError(err) || isTransientSqliteError(err);

340342

}

341343
344+

export function isBenignUncaughtExceptionError(err: unknown): boolean {

345+

for (const candidate of collectNestedUnhandledErrorCandidates(err)) {

346+

const code = extractErrorCodeOrErrno(candidate);

347+

if (code && BENIGN_UNCAUGHT_EXCEPTION_CODES.has(code)) {

348+

return true;

349+

}

350+

}

351+

return false;

352+

}

353+
342354

export function registerUnhandledRejectionHandler(handler: UnhandledRejectionHandler): () => void {

343355

handlers.add(handler);

344356

return () => {