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

推荐订阅源

云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
腾讯CDC
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
A
About on SuperTechFans
博客园 - 叶小钗

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(logging): align diagnostic recovery dedup keys · open...
Feelw00 · 2026-05-31 · via Recent Commits to openclaw:main

@@ -1487,6 +1487,91 @@ describe("stuck session diagnostics threshold", () => {

14871487

}

14881488

});

148914891490+

it("does not re-emit session.recovery.requested when generation bumps mid-flight (idle-queued stall)", async () => {

1491+

const events: DiagnosticEventPayload[] = [];

1492+

// Pin recover() to an unresolved Promise so the in-flight window spans two

1493+

// heartbeat ticks (production awaits abort/drain, settleMs up to 15s). Same

1494+

// seam as the already_in_flight dedup test above.

1495+

let resolveRecovery:

1496+

| ((outcome: {

1497+

status: "skipped";

1498+

action: "observe_only";

1499+

reason: "already_in_flight";

1500+

sessionId: string;

1501+

sessionKey: string;

1502+

}) => void)

1503+

| undefined;

1504+

const recoverStuckSession = vi.fn(

1505+

() =>

1506+

new Promise<{

1507+

status: "skipped";

1508+

action: "observe_only";

1509+

reason: "already_in_flight";

1510+

sessionId: string;

1511+

sessionKey: string;

1512+

}>((resolve) => {

1513+

resolveRecovery = resolve;

1514+

}),

1515+

);

1516+

const unsubscribe = onDiagnosticEvent((event) => {

1517+

events.push(event);

1518+

});

1519+

try {

1520+

startDiagnosticHeartbeat(

1521+

{

1522+

diagnostics: {

1523+

enabled: true,

1524+

stuckSessionWarnMs: 30_000,

1525+

stuckSessionAbortMs: 60_000,

1526+

},

1527+

},

1528+

{ recoverStuckSession },

1529+

);

1530+

// idle-queued-recoverable-stall setup: embedded run ownership + idle + queued.

1531+

logSessionStateChange({ sessionId: "s1", sessionKey: "main", state: "processing" });

1532+

markDiagnosticEmbeddedRunStarted({ sessionId: "s1", sessionKey: "main" });

1533+

logSessionStateChange({ sessionId: "s1", sessionKey: "main", state: "idle" });

1534+1535+

// T1 tick: lastProgressAgeMs > staleMs -> recoveryEligible -> coordinator key

1536+

// add, requested #1 emitted, recover() in-flight (pending).

1537+

vi.advanceTimersByTime(59_000);

1538+

logMessageQueued({ sessionId: "s1", sessionKey: "main", source: "t1" });

1539+

vi.advanceTimersByTime(1_000);

1540+

await Promise.resolve();

1541+

expect(recoverStuckSession).toHaveBeenCalledTimes(1);

1542+1543+

// New message queued during the in-flight window -> state.generation +1 (but

1544+

// lastProgressAt not refreshed). Next tick the coordinator key becomes S:G+1.

1545+

logMessageQueued({ sessionId: "s1", sessionKey: "main", source: "t2-followup" });

1546+1547+

// T2 tick (30s later): same session still idle-queued-stall -> re-classified.

1548+

vi.advanceTimersByTime(30_000);

1549+

await Promise.resolve();

1550+

} finally {

1551+

resolveRecovery?.({

1552+

status: "skipped",

1553+

action: "observe_only",

1554+

reason: "already_in_flight",

1555+

sessionId: "s1",

1556+

sessionKey: "main",

1557+

});

1558+

await Promise.resolve();

1559+

unsubscribe();

1560+

}

1561+1562+

const requestedEvents = events.filter(

1563+

(event) => event.type === "session.recovery.requested",

1564+

);

1565+

// Before the fix (RED): coordinator key = `${ref}:${generation}`, so S:G and

1566+

// S:G+1 are distinct -> a second requested event is emitted ->

1567+

// requestedEvents.length === 2. The runtime sees the same ref and skips the

1568+

// actual recovery as already_in_flight, leaving only a duplicate event.

1569+

// After the fix (GREEN): coordinator key is ref-only -> S:G+1 collides with the

1570+

// in-flight S -> the coordinator also absorbs it as already_in_flight ->

1571+

// requestedEvents.length === 1 (both dedup layers share granularity).

1572+

expect(requestedEvents).toHaveLength(1);

1573+

});

1574+14901575

it("reports long-running sessions separately when active work is making progress", () => {

14911576

const events: DiagnosticEventPayload[] = [];

14921577

const recoverStuckSession = vi.fn();