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

推荐订阅源

Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
V
V2EX
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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): clear completed session active runs (#87810...
clawsweeper · 2026-05-29 · via Recent Commits to openclaw:main

@@ -44,6 +44,7 @@ import {

4444

createSessionEventSubscriberRegistry,

4545

createSessionMessageSubscriberRegistry,

4646

createToolEventRecipientRegistry,

47+

type AgentEventHandlerOptions,

4748

} from "./server-chat.js";

4849

import { loadGatewaySessionRow } from "./server-chat.load-gateway-session-row.runtime.js";

4950

import { loadSessionEntry } from "./session-utils.js";

@@ -79,13 +80,16 @@ describe("agent event handler", () => {

7980

resolveSessionKeyForRun?: (runId: string) => string | undefined;

8081

lifecycleErrorRetryGraceMs?: number;

8182

isChatSendRunActive?: (runId: string) => boolean;

83+

clearTrackedActiveRun?: AgentEventHandlerOptions["clearTrackedActiveRun"];

8284

}) {

8385

const nowSpy =

8486

params?.now === undefined ? undefined : vi.spyOn(Date, "now").mockReturnValue(params.now);

8587

const broadcast = vi.fn();

8688

const broadcastToConnIds = vi.fn();

8789

const nodeSendToSession = vi.fn();

8890

const clearAgentRunContext = vi.fn();

91+

const clearTrackedActiveRun =

92+

vi.fn<NonNullable<AgentEventHandlerOptions["clearTrackedActiveRun"]>>();

8993

const agentRunSeq = new Map<string, number>();

9094

const chatRunState = createChatRunState();

9195

const toolEventRecipients = createToolEventRecipientRegistry();

@@ -106,6 +110,7 @@ describe("agent event handler", () => {

106110

loadGatewaySessionRowForSnapshot: loadGatewaySessionRow,

107111

lifecycleErrorRetryGraceMs: params?.lifecycleErrorRetryGraceMs,

108112

isChatSendRunActive: params?.isChatSendRunActive,

113+

clearTrackedActiveRun: params?.clearTrackedActiveRun ?? clearTrackedActiveRun,

109114

});

110115111116

return {

@@ -114,6 +119,7 @@ describe("agent event handler", () => {

114119

broadcastToConnIds,

115120

nodeSendToSession,

116121

clearAgentRunContext,

122+

clearTrackedActiveRun,

117123

agentRunSeq,

118124

chatRunState,

119125

toolEventRecipients,

@@ -1846,6 +1852,95 @@ describe("agent event handler", () => {

18461852

resetAgentRunContextForTest();

18471853

});

184818541855+

it("clears tracked active runs before terminal sessions.changed broadcasts", () => {

1856+

vi.mocked(loadGatewaySessionRow).mockReturnValue({

1857+

key: "session-finished",

1858+

kind: "direct",

1859+

updatedAt: 1_650,

1860+

status: "running",

1861+

startedAt: 900,

1862+

});

1863+

const {

1864+

broadcastToConnIds,

1865+

clearTrackedActiveRun,

1866+

chatRunState,

1867+

sessionEventSubscribers,

1868+

handler,

1869+

} = createHarness();

1870+

sessionEventSubscribers.subscribe("conn-session");

1871+

chatRunState.registry.add("provider-run", {

1872+

sessionKey: "session-finished",

1873+

clientRunId: "client-run",

1874+

});

1875+1876+

handler({

1877+

runId: "provider-run",

1878+

seq: 2,

1879+

stream: "lifecycle",

1880+

ts: 1_800,

1881+

data: {

1882+

phase: "end",

1883+

startedAt: 900,

1884+

endedAt: 1_700,

1885+

},

1886+

});

1887+1888+

expect(clearTrackedActiveRun).toHaveBeenCalledWith({

1889+

runId: "provider-run",

1890+

clientRunId: "client-run",

1891+

sessionKey: "session-finished",

1892+

});

1893+

expect(requireMockArg(broadcastToConnIds, 0, 0, "sessions changed event")).toBe(

1894+

"sessions.changed",

1895+

);

1896+

expect(clearTrackedActiveRun.mock.invocationCallOrder[0]).toBeLessThan(

1897+

broadcastToConnIds.mock.invocationCallOrder[0] ?? Number.POSITIVE_INFINITY,

1898+

);

1899+

});

1900+1901+

it("keeps chat send retry guards while hiding terminal session projection across session aliases", () => {

1902+

const trackedActiveRuns = new Map<

1903+

string,

1904+

{ sessionKey: string; projectSessionActive?: boolean }

1905+

>([

1906+

["provider-run", { sessionKey: "session-finished" }],

1907+

["client-run", { sessionKey: "requested-session" }],

1908+

]);

1909+

const { chatRunState, handler } = createHarness({

1910+

clearTrackedActiveRun: ({ runId, clientRunId }) => {

1911+

for (const candidateRunId of new Set([runId, clientRunId])) {

1912+

const entry = trackedActiveRuns.get(candidateRunId);

1913+

if (entry) {

1914+

entry.projectSessionActive = false;

1915+

}

1916+

}

1917+

},

1918+

});

1919+

chatRunState.registry.add("provider-run", {

1920+

sessionKey: "session-finished",

1921+

clientRunId: "client-run",

1922+

});

1923+1924+

handler({

1925+

runId: "provider-run",

1926+

seq: 2,

1927+

stream: "lifecycle",

1928+

ts: 1_800,

1929+

data: {

1930+

phase: "end",

1931+

startedAt: 900,

1932+

endedAt: 1_700,

1933+

},

1934+

});

1935+1936+

const providerGuard = trackedActiveRuns.get("provider-run");

1937+

const retryGuard = trackedActiveRuns.get("client-run");

1938+

expect(providerGuard?.projectSessionActive).toBe(false);

1939+

expect(retryGuard).toBeDefined();

1940+

expect(retryGuard?.sessionKey).toBe("requested-session");

1941+

expect(retryGuard?.projectSessionActive).toBe(false);

1942+

});

1943+18491944

it("keeps aborted chat run markers through terminal lifecycle cleanup", () => {

18501945

const { broadcast, chatRunState, handler } = createHarness();

18511946

chatRunState.registry.add("run-aborted", {