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

推荐订阅源

The Cloudflare Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
D
Docker
Vercel News
Vercel News
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
爱范儿
爱范儿
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏

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): reject pre-reset run lifecycle events from ...
openperf · 2026-05-31 · via Recent Commits to openclaw:main

File tree

    • agents/embedded-agent-runner

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ import {

1111

resolveContextEngine,

1212

resolveContextEngineOwnerPluginId,

1313

} from "../../context-engine/registry.js";

14-

import { emitAgentPlanEvent } from "../../infra/agent-events.js";

14+

import { emitAgentPlanEvent, registerAgentRunContext } from "../../infra/agent-events.js";

1515

import { sleepWithAbort } from "../../infra/backoff.js";

1616

import { freezeDiagnosticTraceContext } from "../../infra/diagnostic-trace-context.js";

1717

import { formatErrorMessage } from "../../infra/errors.js";

@@ -1347,6 +1347,10 @@ export async function runEmbeddedAgent(

13471347

const nextSessionFile = compactResult.result?.sessionFile;

13481348

if (nextSessionId && nextSessionId !== activeSessionId) {

13491349

activeSessionId = nextSessionId;

1350+

// Keep the run context's sessionId tracking the live session so

1351+

// lifecycle persistence isn't treated as stale after a legitimate

1352+

// mid-run compaction rotation (#88538).

1353+

registerAgentRunContext(params.runId, { sessionId: activeSessionId });

13501354

}

13511355

if (nextSessionFile && nextSessionFile !== activeSessionFile) {

13521356

activeSessionFile = nextSessionFile;

@@ -1705,6 +1709,8 @@ export async function runEmbeddedAgent(

17051709

const timedOutDuringToolExecution = attempt.timedOutDuringToolExecution ?? false;

17061710

if (sessionIdUsed && sessionIdUsed !== activeSessionId) {

17071711

activeSessionId = sessionIdUsed;

1712+

// Track the live session for lifecycle persistence identity (#88538).

1713+

registerAgentRunContext(params.runId, { sessionId: activeSessionId });

17081714

}

17091715

if (sessionFileUsed && sessionFileUsed !== activeSessionFile) {

17101716

activeSessionFile = sessionFileUsed;

Original file line numberDiff line numberDiff line change

@@ -1584,6 +1584,7 @@ export async function runAgentTurnWithFallback(params: {

15841584

if (params.sessionKey) {

15851585

registerAgentRunContext(runId, {

15861586

sessionKey: params.sessionKey,

1587+

...(params.followupRun.run.sessionId ? { sessionId: params.followupRun.run.sessionId } : {}),

15871588

verboseLevel: params.resolvedVerboseLevel,

15881589

isHeartbeat: params.isHeartbeat,

15891590

isControlUiVisible: shouldSurfaceToControlUi,

Original file line numberDiff line numberDiff line change

@@ -545,6 +545,7 @@ export function createFollowupRunner(params: {

545545

if (run.sessionKey) {

546546

registerAgentRunContext(runId, {

547547

sessionKey: run.sessionKey,

548+

...(run.sessionId ? { sessionId: run.sessionId } : {}),

548549

verboseLevel: run.verboseLevel,

549550

isControlUiVisible: shouldSurfaceToControlUi,

550551

});

Original file line numberDiff line numberDiff line change

@@ -2,9 +2,28 @@ import { describe, expect, it } from "vitest";

22

import {

33

deriveGatewaySessionLifecycleSnapshot,

44

derivePersistedSessionLifecyclePatch,

5+

isStaleLifecycleEventForSession,

56

} from "./session-lifecycle-state.js";

67
78

describe("session lifecycle state", () => {

9+

it("treats a pre-reset run's lifecycle event as stale once the row's sessionId rotated (#88538)", () => {

10+

expect(

11+

isStaleLifecycleEventForSession({ owningSessionId: "old-id", currentSessionId: "new-id" }),

12+

).toBe(true);

13+

});

14+
15+

it("applies lifecycle events whose owning sessionId matches the current row", () => {

16+

expect(

17+

isStaleLifecycleEventForSession({ owningSessionId: "same-id", currentSessionId: "same-id" }),

18+

).toBe(false);

19+

});

20+
21+

it("does not guard when the owning sessionId is unknown (preserves legacy behavior)", () => {

22+

expect(

23+

isStaleLifecycleEventForSession({ owningSessionId: undefined, currentSessionId: "new-id" }),

24+

).toBe(false);

25+

});

26+
827

it("reactivates completed sessions on lifecycle start", () => {

928

expect(

1029

deriveGatewaySessionLifecycleSnapshot({

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ import type { GatewaySessionRow, SessionRunStatus } from "./session-utils.types.

99
1010

type LifecyclePhase = "start" | "end" | "error";

1111
12-

type LifecycleEventLike = Pick<AgentEventPayload, "ts"> & {

12+

type LifecycleEventLike = Pick<AgentEventPayload, "ts" | "sessionId"> & {

1313

data?: {

1414

phase?: unknown;

1515

startedAt?: unknown;

@@ -172,6 +172,22 @@ export function derivePersistedSessionLifecyclePatch(params: {

172172

};

173173

}

174174
175+

/**

176+

* A pre-`sessions.reset` run's lifecycle event must not mutate a session row

177+

* whose sessionId was rotated by the reset. True only when both the owning

178+

* run's sessionId and the current row's sessionId are known and differ.

179+

*/

180+

export function isStaleLifecycleEventForSession(params: {

181+

owningSessionId?: string;

182+

currentSessionId?: string;

183+

}): boolean {

184+

return Boolean(

185+

params.owningSessionId &&

186+

params.currentSessionId &&

187+

params.owningSessionId !== params.currentSessionId,

188+

);

189+

}

190+
175191

export async function persistGatewaySessionLifecycleEvent(params: {

176192

sessionKey: string;

177193

agentId?: string;

@@ -190,15 +206,27 @@ export async function persistGatewaySessionLifecycleEvent(params: {

190206

return;

191207

}

192208
209+

const owningSessionId =

210+

typeof params.event.sessionId === "string" && params.event.sessionId

211+

? params.event.sessionId

212+

: undefined;

213+
193214

await updateSessionStoreEntry({

194215

storePath: sessionEntry.storePath,

195216

sessionKey: sessionEntry.canonicalKey,

196217

skipMaintenance: true,

197218

takeCacheOwnership: true,

198-

update: async (entry) =>

199-

derivePersistedSessionLifecyclePatch({

219+

update: async (entry) => {

220+

// Reject a pre-reset run's lifecycle event: sessions.reset rotates the row

221+

// to a new sessionId under the same sessionKey, so an old in-flight run's

222+

// late start/end/error must not overwrite the fresh row's status (#88538).

223+

if (isStaleLifecycleEventForSession({ owningSessionId, currentSessionId: entry.sessionId })) {

224+

return null;

225+

}

226+

return derivePersistedSessionLifecyclePatch({

200227

entry,

201228

event: params.event,

202-

}),

229+

});

230+

},

203231

});

204232

}

Original file line numberDiff line numberDiff line change

@@ -30,6 +30,44 @@ describe("agent-events sequencing", () => {

3030

expect(getAgentRunContext("run-1")).toBeUndefined();

3131

});

3232
33+

test("stamps the owning sessionId onto lifecycle events for reset-stale guarding (#88538)", () => {

34+

registerAgentRunContext("run-1", { sessionKey: "main", sessionId: "old-session-id" });

35+

const seen: Array<{ stream: string; sessionId?: string }> = [];

36+

const stop = onAgentEvent((evt) => {

37+

if (evt.runId === "run-1") {

38+

seen.push({ stream: evt.stream, sessionId: evt.sessionId });

39+

}

40+

});

41+
42+

emitAgentEvent({ runId: "run-1", stream: "lifecycle", data: { phase: "error" } });

43+

emitAgentEvent({ runId: "run-1", stream: "item", data: {} });

44+
45+

stop();

46+
47+

expect(seen.find((evt) => evt.stream === "lifecycle")?.sessionId).toBe("old-session-id");

48+

// Only lifecycle events carry the sessionId; other streams stay unstamped.

49+

expect(seen.find((evt) => evt.stream === "item")?.sessionId).toBeUndefined();

50+

});

51+
52+

test("refreshes the stamped sessionId after a mid-run session rotation (#88538)", () => {

53+

registerAgentRunContext("run-1", { sessionKey: "main", sessionId: "start-id" });

54+

// A legitimate compaction rotation re-registers the run with its new session.

55+

registerAgentRunContext("run-1", { sessionId: "rotated-id" });

56+

let stamped: string | undefined;

57+

const stop = onAgentEvent((evt) => {

58+

if (evt.runId === "run-1" && evt.stream === "lifecycle") {

59+

stamped = evt.sessionId;

60+

}

61+

});

62+
63+

emitAgentEvent({ runId: "run-1", stream: "lifecycle", data: { phase: "end" } });

64+
65+

stop();

66+

// Terminal event carries the rotated id, so persistence won't treat the

67+

// run as stale against the row it rotated to.

68+

expect(stamped).toBe("rotated-id");

69+

});

70+
3371

test("maintains monotonic seq per runId", () => {

3472

const seen: Record<string, number[]> = {};

3573

const stop = onAgentEvent((evt) => {

Original file line numberDiff line numberDiff line change

@@ -106,11 +106,19 @@ export type AgentEventPayload = {

106106

ts: number;

107107

data: Record<string, unknown>;

108108

sessionKey?: string;

109+

/**

110+

* sessionId the run was bound to when it started. Lifecycle persistence uses

111+

* this to reject terminal events from a pre-`sessions.reset` run that would

112+

* otherwise clobber the rotated session row resolved by the shared sessionKey.

113+

*/

114+

sessionId?: string;

109115

agentId?: string;

110116

};

111117
112118

export type AgentRunContext = {

113119

sessionKey?: string;

120+

/** Owning run's sessionId; stamped onto lifecycle events (see AgentEventPayload.sessionId). */

121+

sessionId?: string;

114122

verboseLevel?: VerboseLevel;

115123

isHeartbeat?: boolean;

116124

/** Whether control UI clients should receive chat/agent updates for this run. */

@@ -153,6 +161,9 @@ export function registerAgentRunContext(runId: string, context: AgentRunContext)

153161

if (context.sessionKey && existing.sessionKey !== context.sessionKey) {

154162

existing.sessionKey = context.sessionKey;

155163

}

164+

if (context.sessionId && existing.sessionId !== context.sessionId) {

165+

existing.sessionId = context.sessionId;

166+

}

156167

if (context.verboseLevel && existing.verboseLevel !== context.verboseLevel) {

157168

existing.verboseLevel = context.verboseLevel;

158169

}

@@ -226,9 +237,14 @@ export function emitAgentEvent(event: Omit<AgentEventPayload, "seq" | "ts">) {

226237

// stream remains redacted for hidden runs because it is observational only.

227238

const preserveSessionKey = isControlUiVisible || event.stream === "lifecycle";

228239

const sessionKey = preserveSessionKey ? (eventSessionKey ?? context?.sessionKey) : undefined;

240+

// Stamp lifecycle events with the owning sessionId (see AgentEventPayload) at

241+

// emit time, since the run context can be cleared before the terminal persists.

242+

const sessionId =

243+

event.stream === "lifecycle" ? (event.sessionId ?? context?.sessionId) : event.sessionId;

229244

const enriched: AgentEventPayload = {

230245

...event,

231246

sessionKey,

247+

...(sessionId ? { sessionId } : {}),

232248

seq: nextSeq,

233249

ts: Date.now(),

234250

};