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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - Franky

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(agents): mark interrupted sessions before restart (#8...
joshavant · 2026-05-17 · via Recent Commits to openclaw:main

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

99

INTERNAL_RUNTIME_CONTEXT_END,

1010

} from "./internal-runtime-context.js";

1111

import {

12+

markRestartAbortedMainSessions,

1213

markRestartAbortedMainSessionsFromLocks,

1314

recoverRestartAbortedMainSessions,

1415

} from "./main-session-restart-recovery.js";

@@ -78,6 +79,161 @@ function firstGatewayParams(): Record<string, unknown> {

7879

}

79808081

describe("main-session-restart-recovery", () => {

82+

it("marks only matching running main sessions by active session key", async () => {

83+

const sessionsDir = await makeSessionsDir();

84+

await writeStore(sessionsDir, {

85+

"agent:main:main": {

86+

sessionId: "main-session",

87+

updatedAt: Date.now() - 10_000,

88+

status: "running",

89+

},

90+

"agent:main:completed": {

91+

sessionId: "completed-session",

92+

updatedAt: Date.now() - 10_000,

93+

status: "done",

94+

},

95+

"agent:main:subagent:child": {

96+

sessionId: "child-session",

97+

updatedAt: Date.now() - 10_000,

98+

status: "running",

99+

spawnDepth: 1,

100+

},

101+

"cron:nightly": {

102+

sessionId: "cron-session",

103+

updatedAt: Date.now() - 10_000,

104+

status: "running",

105+

},

106+

"agent:main:other": {

107+

sessionId: "other-session",

108+

updatedAt: Date.now() - 10_000,

109+

status: "running",

110+

},

111+

});

112+113+

const result = await markRestartAbortedMainSessions({

114+

stateDir: tmpDir,

115+

sessionKeys: ["agent:main:main", "agent:main:completed", "agent:main:subagent:child"],

116+

});

117+118+

const store = loadSessionStore(path.join(sessionsDir, "sessions.json"));

119+

expect(result).toEqual({ marked: 1, skipped: 1 });

120+

expect(store["agent:main:main"]?.abortedLastRun).toBe(true);

121+

expect(store["agent:main:completed"]?.abortedLastRun).toBeUndefined();

122+

expect(store["agent:main:subagent:child"]?.abortedLastRun).toBeUndefined();

123+

expect(store["cron:nightly"]?.abortedLastRun).toBeUndefined();

124+

expect(store["agent:main:other"]?.abortedLastRun).toBeUndefined();

125+

});

126+127+

it("marks active sessions in a configured custom session store", async () => {

128+

const storePath = path.join(tmpDir, "custom", "sessions.json");

129+

await fs.mkdir(path.dirname(storePath), { recursive: true });

130+

await fs.writeFile(

131+

storePath,

132+

JSON.stringify(

133+

{

134+

"agent:main:issue-82433": {

135+

sessionId: "custom-session",

136+

updatedAt: Date.now() - 10_000,

137+

status: "running",

138+

},

139+

} satisfies Record<string, SessionEntry>,

140+

null,

141+

2,

142+

),

143+

);

144+

await writeTranscript(path.dirname(storePath), "custom-session", [

145+

{ role: "user", content: "continue this custom-store turn" },

146+

{ role: "toolResult", content: "custom result" },

147+

]);

148+149+

const result = await markRestartAbortedMainSessions({

150+

cfg: { session: { store: storePath } },

151+

stateDir: tmpDir,

152+

sessionKeys: ["agent:main:issue-82433"],

153+

});

154+155+

const store = loadSessionStore(storePath);

156+

expect(result).toEqual({ marked: 1, skipped: 0 });

157+

expect(store["agent:main:issue-82433"]?.abortedLastRun).toBe(true);

158+159+

const recovery = await recoverRestartAbortedMainSessions({

160+

cfg: { session: { store: storePath } },

161+

stateDir: tmpDir,

162+

});

163+164+

expect(recovery).toEqual({ recovered: 1, failed: 0, skipped: 0 });

165+

});

166+167+

it("uses active session ids to avoid marking stale duplicate keys in another store", async () => {

168+

const defaultSessionsDir = await makeSessionsDir();

169+

await writeStore(defaultSessionsDir, {

170+

"agent:main:issue-82433": {

171+

sessionId: "stale-default-session",

172+

updatedAt: Date.now() - 10_000,

173+

status: "running",

174+

},

175+

});

176+177+

const storePath = path.join(tmpDir, "custom-duplicate-key", "sessions.json");

178+

await fs.mkdir(path.dirname(storePath), { recursive: true });

179+

await fs.writeFile(

180+

storePath,

181+

JSON.stringify(

182+

{

183+

"agent:main:issue-82433": {

184+

sessionId: "active-custom-session",

185+

updatedAt: Date.now() - 10_000,

186+

status: "running",

187+

},

188+

} satisfies Record<string, SessionEntry>,

189+

null,

190+

2,

191+

),

192+

);

193+194+

const result = await markRestartAbortedMainSessions({

195+

cfg: { session: { store: storePath } },

196+

stateDir: tmpDir,

197+

sessionIds: ["active-custom-session"],

198+

sessionKeys: ["agent:main:issue-82433"],

199+

});

200+201+

const defaultStore = loadSessionStore(path.join(defaultSessionsDir, "sessions.json"));

202+

const customStore = loadSessionStore(storePath);

203+

expect(result).toEqual({ marked: 1, skipped: 0 });

204+

expect(defaultStore["agent:main:issue-82433"]?.abortedLastRun).toBeUndefined();

205+

expect(customStore["agent:main:issue-82433"]?.abortedLastRun).toBe(true);

206+

});

207+208+

it("marks custom-store sessions by session id when no session key is available", async () => {

209+

const storePath = path.join(tmpDir, "custom-by-id", "sessions.json");

210+

await fs.mkdir(path.dirname(storePath), { recursive: true });

211+

await fs.writeFile(

212+

storePath,

213+

JSON.stringify(

214+

{

215+

"agent:main:custom-by-id": {

216+

sessionId: "custom-session-id-only",

217+

updatedAt: Date.now() - 10_000,

218+

status: "running",

219+

},

220+

} satisfies Record<string, SessionEntry>,

221+

null,

222+

2,

223+

),

224+

);

225+226+

const result = await markRestartAbortedMainSessions({

227+

cfg: { session: { store: storePath } },

228+

stateDir: tmpDir,

229+

sessionIds: ["custom-session-id-only"],

230+

});

231+232+

const store = loadSessionStore(storePath);

233+

expect(result).toEqual({ marked: 1, skipped: 0 });

234+

expect(store["agent:main:custom-by-id"]?.abortedLastRun).toBe(true);

235+

});

236+81237

it("marks only main running sessions whose transcript lock was cleaned", async () => {

82238

const sessionsDir = await makeSessionsDir();

83239

await writeStore(sessionsDir, {