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

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow 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(telegram): keep unreachable polling sockets non-fatal...
HemantSudars · 2026-04-30 · via Recent Commits to openclaw:main

@@ -44,24 +44,40 @@ const { initSpy, runSpy, getRuntimeConfigMock } = vi.hoisted(() => ({

4444

})),

4545

}));

464647-

const { registerUnhandledRejectionHandlerMock, emitUnhandledRejection, resetUnhandledRejection } =

48-

vi.hoisted(() => {

49-

let handler: ((reason: unknown) => boolean) | undefined;

50-

return {

51-

registerUnhandledRejectionHandlerMock: vi.fn((next: (reason: unknown) => boolean) => {

52-

handler = next;

53-

return () => {

54-

if (handler === next) {

55-

handler = undefined;

56-

}

57-

};

58-

}),

59-

emitUnhandledRejection: (reason: unknown) => handler?.(reason) ?? false,

60-

resetUnhandledRejection: () => {

61-

handler = undefined;

62-

},

63-

};

64-

});

47+

const {

48+

registerUnhandledRejectionHandlerMock,

49+

registerUncaughtExceptionHandlerMock,

50+

emitUnhandledRejection,

51+

emitUncaughtException,

52+

resetProcessErrorHandlers,

53+

} = vi.hoisted(() => {

54+

let unhandledRejectionHandler: ((reason: unknown) => boolean) | undefined;

55+

let uncaughtExceptionHandler: ((error: unknown) => boolean) | undefined;

56+

return {

57+

registerUnhandledRejectionHandlerMock: vi.fn((next: (reason: unknown) => boolean) => {

58+

unhandledRejectionHandler = next;

59+

return () => {

60+

if (unhandledRejectionHandler === next) {

61+

unhandledRejectionHandler = undefined;

62+

}

63+

};

64+

}),

65+

registerUncaughtExceptionHandlerMock: vi.fn((next: (error: unknown) => boolean) => {

66+

uncaughtExceptionHandler = next;

67+

return () => {

68+

if (uncaughtExceptionHandler === next) {

69+

uncaughtExceptionHandler = undefined;

70+

}

71+

};

72+

}),

73+

emitUnhandledRejection: (reason: unknown) => unhandledRejectionHandler?.(reason) ?? false,

74+

emitUncaughtException: (error: unknown) => uncaughtExceptionHandler?.(error) ?? false,

75+

resetProcessErrorHandlers: () => {

76+

unhandledRejectionHandler = undefined;

77+

uncaughtExceptionHandler = undefined;

78+

},

79+

};

80+

});

65816682

const { createTelegramBotErrors } = vi.hoisted(() => ({

6783

createTelegramBotErrors: [] as unknown[],

@@ -113,6 +129,16 @@ function makeRecoverableFetchError() {

113129

});

114130

}

115131132+

class MockHttpError extends Error {

133+

constructor(

134+

message: string,

135+

public readonly error: unknown,

136+

) {

137+

super(message);

138+

this.name = "HttpError";

139+

}

140+

}

141+116142

async function makeTaggedPollingFetchError() {

117143

const { tagTelegramNetworkError } = await import("./network-errors.js");

118144

const err = makeRecoverableFetchError();

@@ -123,6 +149,13 @@ async function makeTaggedPollingFetchError() {

123149

return err;

124150

}

125151152+

async function makeTaggedPollingHttpError() {

153+

return new MockHttpError(

154+

"Network request for 'getUpdates' failed!",

155+

await makeTaggedPollingFetchError(),

156+

);

157+

}

158+126159

const createAbortTask = (

127160

abort: AbortController,

128161

beforeAbort?: () => void,

@@ -316,6 +349,7 @@ vi.mock("openclaw/plugin-sdk/runtime-env", async () => {

316349

computeBackoff,

317350

sleepWithAbort,

318351

registerUnhandledRejectionHandler: registerUnhandledRejectionHandlerMock,

352+

registerUncaughtExceptionHandler: registerUncaughtExceptionHandlerMock,

319353

};

320354

});

321355

@@ -364,7 +398,8 @@ describe("monitorTelegramProvider (grammY)", () => {

364398

close: vi.fn(async () => undefined),

365399

}));

366400

registerUnhandledRejectionHandlerMock.mockClear();

367-

resetUnhandledRejection();

401+

registerUncaughtExceptionHandlerMock.mockClear();

402+

resetProcessErrorHandlers();

368403

createTelegramBotErrors.length = 0;

369404

createdBotStops.length = 0;

370405

consoleErrorSpy = vi.spyOn(console, "error").mockImplementation(() => {});

@@ -659,6 +694,38 @@ describe("monitorTelegramProvider (grammY)", () => {

659694

expectRecoverableRetryState(2);

660695

});

661696697+

it("force-restarts polling when uncaught network exception stalls runner", async () => {

698+

const abort = new AbortController();

699+

const firstCycle = mockRunOnceWithStalledPollingRunner();

700+

const secondCycle = mockRunOnceWithStalledPollingRunner();

701+702+

const monitor = monitorTelegramProvider({ token: "tok", abortSignal: abort.signal });

703+

await firstCycle.waitForRunStart();

704+705+

expect(emitUncaughtException(await makeTaggedPollingFetchError())).toBe(true);

706+

expect(firstCycle.stop).toHaveBeenCalledTimes(1);

707+

await secondCycle.waitForRunStart();

708+

abort.abort();

709+

await monitor;

710+

expectRecoverableRetryState(2);

711+

});

712+713+

it("force-restarts polling when uncaught polling HttpError stalls runner", async () => {

714+

const abort = new AbortController();

715+

const firstCycle = mockRunOnceWithStalledPollingRunner();

716+

const secondCycle = mockRunOnceWithStalledPollingRunner();

717+718+

const monitor = monitorTelegramProvider({ token: "tok", abortSignal: abort.signal });

719+

await firstCycle.waitForRunStart();

720+721+

expect(emitUncaughtException(await makeTaggedPollingHttpError())).toBe(true);

722+

expect(firstCycle.stop).toHaveBeenCalledTimes(1);

723+

await secondCycle.waitForRunStart();

724+

abort.abort();

725+

await monitor;

726+

expectRecoverableRetryState(2);

727+

});

728+662729

it("rebuilds the resolved transport after a stalled polling restart", async () => {

663730

vi.useFakeTimers({ shouldAdvanceTime: true });

664731

try {