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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

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): back off session init spool retries · open...
VACInc · 2026-06-26 · via Recent Commits to openclaw:main

@@ -418,7 +418,7 @@ type TestTelegramUpdate = {

418418

update_id: number;

419419

message: {

420420

text: string;

421-

chat: { id: number; type: "supergroup" };

421+

chat: { id: number; type: "private" | "supergroup" };

422422

message_thread_id?: number;

423423

is_topic_message?: boolean;

424424

};

@@ -436,6 +436,16 @@ function topicUpdate(updateId: number, threadId: number, text: string): TestTele

436436

};

437437

}

438438439+

function directUpdate(updateId: number, chatId: number, text: string): TestTelegramUpdate {

440+

return {

441+

update_id: updateId,

442+

message: {

443+

text,

444+

chat: { id: chatId, type: "private" },

445+

},

446+

};

447+

}

448+439449

async function waitForAbortSignal(signal: AbortSignal): Promise<void> {

440450

if (signal.aborted) {

441451

return;

@@ -1795,6 +1805,93 @@ describe("TelegramPollingSession", () => {

17951805

});

17961806

});

179718071808+

for (const scenario of [

1809+

{

1810+

name: "topic",

1811+

conflict: topicUpdate(42, 10, "retryable session init conflict"),

1812+

blocked: topicUpdate(43, 10, "same topic must wait behind retry backoff"),

1813+

other: topicUpdate(44, 11, "other topic can continue"),

1814+

conflictEvent: "topic10:conflict",

1815+

blockedEvent: "topic10:overtook",

1816+

otherEvent: "topic11",

1817+

error: "reply session initialization conflicted for agent:main:telegram:group:-100:topic:10",

1818+

},

1819+

{

1820+

name: "direct message",

1821+

conflict: directUpdate(42, 100, "retryable session init conflict"),

1822+

blocked: directUpdate(43, 100, "same DM must wait behind retry backoff"),

1823+

other: directUpdate(44, 101, "other DM can continue"),

1824+

conflictEvent: "dm100:conflict",

1825+

blockedEvent: "dm100:overtook",

1826+

otherEvent: "dm101",

1827+

error: "reply session initialization conflicted for agent:main:telegram:direct:100",

1828+

},

1829+

]) {

1830+

it(`backs off retryable reply session init conflicts for ${scenario.name} lanes`, async () => {

1831+

vi.useFakeTimers({ shouldAdvanceTime: true });

1832+

try {

1833+

await withTempSpool(async (tempDir) => {

1834+

const abort = new AbortController();

1835+

const log = vi.fn();

1836+

let attempts = 0;

1837+

const events: string[] = [];

1838+

await writeSpooledTestUpdates(tempDir, [

1839+

scenario.conflict,

1840+

scenario.blocked,

1841+

scenario.other,

1842+

]);

1843+1844+

const { runPromise, stopWorker } = startIsolatedIngressSession({

1845+

abort,

1846+

spoolDir: tempDir,

1847+

log,

1848+

drainIntervalMs: 100,

1849+

handleUpdate: async (update) => {

1850+

if (update.update_id === scenario.conflict.update_id) {

1851+

attempts += 1;

1852+

events.push(`${scenario.conflictEvent}:${attempts}`);

1853+

throw new Error(scenario.error);

1854+

}

1855+

if (update.update_id === scenario.blocked.update_id) {

1856+

events.push(scenario.blockedEvent);

1857+

return;

1858+

}

1859+

if (update.update_id === scenario.other.update_id) {

1860+

events.push(scenario.otherEvent);

1861+

}

1862+

},

1863+

});

1864+1865+

await vi.waitFor(() => expect(attempts).toBe(1));

1866+

await vi.advanceTimersByTimeAsync(1_000);

1867+

expect(attempts).toBe(1);

1868+

await vi.waitFor(() =>

1869+

expect(events).toEqual([`${scenario.conflictEvent}:1`, scenario.otherEvent]),

1870+

);

1871+

expect(await pendingUpdateIds(tempDir, "all")).toEqual([

1872+

scenario.conflict.update_id,

1873+

scenario.blocked.update_id,

1874+

]);

1875+

expect(await failedUpdateIds(tempDir)).toEqual([]);

1876+1877+

await vi.advanceTimersByTimeAsync(4_500);

1878+

await vi.waitFor(() => expect(attempts).toBe(2));

1879+

expect(events).not.toContain(scenario.blockedEvent);

1880+

expectLogIncludes(

1881+

log,

1882+

`spooled update ${scenario.conflict.update_id} failed; keeping for retry`,

1883+

);

1884+1885+

abort.abort();

1886+

stopWorker();

1887+

await runPromise;

1888+

});

1889+

} finally {

1890+

vi.useRealTimers();

1891+

}

1892+

});

1893+

}

1894+17981895

it("dead-letters wrapped missing harness failures", async () => {

17991896

await withTempSpool(async (tempDir) => {

18001897

const abort = new AbortController();