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

推荐订阅源

雷峰网
雷峰网
宝玉的分享
宝玉的分享
量子位
博客园 - Franky
The Cloudflare Blog
博客园 - 【当耐特】
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
V
V2EX
MongoDB | Blog
MongoDB | Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
博客园 - 聂微东
F
Fortinet All Blogs
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
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): recover sticky fallback transport · opencl...
obviyus · 2026-05-08 · via Recent Commits to openclaw:main

@@ -787,8 +787,11 @@ describe("resolveTelegramFetch", () => {

787787

);

788788

});

789789790-

it("retries once and then keeps sticky IPv4 dispatcher for subsequent requests", async () => {

791-

primeStickyFallbackRetry("ETIMEDOUT");

790+

it("retries once, keeps sticky IPv4, then recovers to primary dispatcher", async () => {

791+

undiciFetch.mockRejectedValueOnce(buildFetchFallbackError("ETIMEDOUT"));

792+

for (let i = 0; i < 7; i += 1) {

793+

undiciFetch.mockResolvedValueOnce({ ok: true } as Response);

794+

}

792795793796

const resolved = resolveTelegramFetchOrThrow(undefined, {

794797

network: {

@@ -797,20 +800,30 @@ describe("resolveTelegramFetch", () => {

797800

});

798801799802

await resolved("https://api.telegram.org/botx/sendMessage");

800-

await resolved("https://api.telegram.org/botx/sendChatAction");

803+

for (let i = 0; i < 4; i += 1) {

804+

await resolved(`https://api.telegram.org/botx/sendChatAction?sticky=${i}`);

805+

}

806+

await resolved("https://api.telegram.org/botx/getMe");

807+

await resolved("https://api.telegram.org/botx/deleteWebhook");

801808802-

expect(undiciFetch).toHaveBeenCalledTimes(3);

809+

expect(undiciFetch).toHaveBeenCalledTimes(8);

803810804811

const firstDispatcher = getDispatcherFromUndiciCall(1);

805812

const secondDispatcher = getDispatcherFromUndiciCall(2);

806-

const thirdDispatcher = getDispatcherFromUndiciCall(3);

813+

const sixthDispatcher = getDispatcherFromUndiciCall(6);

814+

const seventhDispatcher = getDispatcherFromUndiciCall(7);

815+

const eighthDispatcher = getDispatcherFromUndiciCall(8);

807816808817

expect(firstDispatcher).toBeDefined();

809818

expect(secondDispatcher).toBeDefined();

810-

expect(thirdDispatcher).toBeDefined();

819+

expect(sixthDispatcher).toBeDefined();

820+

expect(seventhDispatcher).toBeDefined();

821+

expect(eighthDispatcher).toBeDefined();

811822812823

expect(firstDispatcher).not.toBe(secondDispatcher);

813-

expect(secondDispatcher).toBe(thirdDispatcher);

824+

expect(secondDispatcher).toBe(sixthDispatcher);

825+

expect(seventhDispatcher).toBe(firstDispatcher);

826+

expect(eighthDispatcher).toBe(firstDispatcher);

814827815828

expectStickyAutoSelectDispatcher(firstDispatcher);

816829

expect(secondDispatcher?.options?.connect).toEqual(

@@ -822,17 +835,21 @@ describe("resolveTelegramFetch", () => {

822835

expect(loggerDebug).toHaveBeenCalledWith(

823836

expect.stringContaining("fetch fallback: enabling sticky IPv4-only dispatcher"),

824837

);

838+

expect(loggerDebug).toHaveBeenCalledWith(

839+

expect.stringContaining("fetch fallback: recovered from attempt 1 to attempt 0"),

840+

);

825841

expect(loggerWarn).not.toHaveBeenCalledWith(

826842

expect.stringContaining("fetch fallback: enabling sticky IPv4-only dispatcher"),

827843

);

828844

});

829845830-

it("escalates from IPv4 fallback to pinned Telegram IP and keeps it sticky", async () => {

846+

it("escalates from IPv4 fallback to pinned Telegram IP and recovers to primary", async () => {

831847

undiciFetch

832848

.mockRejectedValueOnce(buildFetchFallbackError("ETIMEDOUT"))

833-

.mockRejectedValueOnce(buildFetchFallbackError("EHOSTUNREACH"))

834-

.mockResolvedValueOnce({ ok: true } as Response)

835-

.mockResolvedValueOnce({ ok: true } as Response);

849+

.mockRejectedValueOnce(buildFetchFallbackError("EHOSTUNREACH"));

850+

for (let i = 0; i < 7; i += 1) {

851+

undiciFetch.mockResolvedValueOnce({ ok: true } as Response);

852+

}

836853837854

const resolved = resolveTelegramFetchOrThrow(undefined, {

838855

network: {

@@ -842,20 +859,72 @@ describe("resolveTelegramFetch", () => {

842859

});

843860844861

await resolved("https://api.telegram.org/botx/sendMessage");

845-

await resolved("https://api.telegram.org/botx/sendChatAction");

862+

for (let i = 0; i < 4; i += 1) {

863+

await resolved(`https://api.telegram.org/botx/sendChatAction?sticky=${i}`);

864+

}

865+

await resolved("https://api.telegram.org/botx/getMe");

866+

await resolved("https://api.telegram.org/botx/deleteWebhook");

846867847-

expect(undiciFetch).toHaveBeenCalledTimes(4);

868+

expect(undiciFetch).toHaveBeenCalledTimes(9);

848869870+

const firstDispatcher = getDispatcherFromUndiciCall(1);

849871

const secondDispatcher = getDispatcherFromUndiciCall(2);

850872

const thirdDispatcher = getDispatcherFromUndiciCall(3);

851-

const fourthDispatcher = getDispatcherFromUndiciCall(4);

873+

const seventhDispatcher = getDispatcherFromUndiciCall(7);

874+

const eighthDispatcher = getDispatcherFromUndiciCall(8);

875+

const ninthDispatcher = getDispatcherFromUndiciCall(9);

852876853877

expect(secondDispatcher).not.toBe(thirdDispatcher);

854-

expect(thirdDispatcher).toBe(fourthDispatcher);

878+

expect(thirdDispatcher).toBe(seventhDispatcher);

879+

expect(eighthDispatcher).toBe(firstDispatcher);

880+

expect(ninthDispatcher).toBe(firstDispatcher);

855881

expectPinnedFallbackIpDispatcher(3);

856882

expect(loggerWarn).toHaveBeenCalledWith(

857883

expect.stringContaining("fetch fallback: DNS-resolved IP unreachable"),

858884

);

885+

expect(loggerDebug).toHaveBeenCalledWith(

886+

expect.stringContaining("fetch fallback: recovered from attempt 2 to attempt 0"),

887+

);

888+

});

889+890+

it("keeps sticky fallback after a failed primary recovery probe", async () => {

891+

undiciFetch

892+

.mockRejectedValueOnce(buildFetchFallbackError("ETIMEDOUT"))

893+

.mockResolvedValueOnce({ ok: true } as Response)

894+

.mockResolvedValueOnce({ ok: true } as Response)

895+

.mockResolvedValueOnce({ ok: true } as Response)

896+

.mockResolvedValueOnce({ ok: true } as Response)

897+

.mockResolvedValueOnce({ ok: true } as Response)

898+

.mockRejectedValueOnce(buildFetchFallbackError("ETIMEDOUT"))

899+

.mockResolvedValueOnce({ ok: true } as Response)

900+

.mockResolvedValueOnce({ ok: true } as Response);

901+902+

const resolved = resolveTelegramFetchOrThrow(undefined, {

903+

network: {

904+

autoSelectFamily: true,

905+

},

906+

});

907+908+

await resolved("https://api.telegram.org/botx/sendMessage");

909+

for (let i = 0; i < 4; i += 1) {

910+

await resolved(`https://api.telegram.org/botx/sendChatAction?sticky=${i}`);

911+

}

912+

await resolved("https://api.telegram.org/botx/getMe");

913+

await resolved("https://api.telegram.org/botx/deleteWebhook");

914+915+

expect(undiciFetch).toHaveBeenCalledTimes(9);

916+917+

const firstDispatcher = getDispatcherFromUndiciCall(1);

918+

const secondDispatcher = getDispatcherFromUndiciCall(2);

919+920+

expect(firstDispatcher).not.toBe(secondDispatcher);

921+

expect(getDispatcherFromUndiciCall(6)).toBe(secondDispatcher);

922+

expect(getDispatcherFromUndiciCall(7)).toBe(firstDispatcher);

923+

expect(getDispatcherFromUndiciCall(8)).toBe(secondDispatcher);

924+

expect(getDispatcherFromUndiciCall(9)).toBe(secondDispatcher);

925+

expect(loggerDebug).toHaveBeenCalledWith(

926+

expect.stringContaining("fetch fallback: re-probing primary dispatcher"),

927+

);

859928

});

860929861930

it("keeps the armed fallback sticky when all attempts fail", async () => {