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

推荐订阅源

J
Java Code Geeks
腾讯CDC
博客园 - 聂微东
爱范儿
爱范儿
罗磊的独立博客
P
Proofpoint News Feed
博客园 - Franky
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog

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): restore compaction gateway logs · openclaw/o...
rubencu · 2026-05-11 · via Recent Commits to openclaw:main

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

1010

} from "./pi-embedded-subscribe.compaction-test-helpers.js";

1111

import {

1212

handleCompactionEnd,

13+

handleCompactionStart,

1314

reconcileSessionStoreCompactionCountAfterSuccess,

1415

} from "./pi-embedded-subscribe.handlers.compaction.js";

1516

import type { EmbeddedPiSubscribeContext } from "./pi-embedded-subscribe.handlers.types.js";

@@ -19,6 +20,7 @@ function createCompactionContext(params: {

1920

sessionKey: string;

2021

agentId?: string;

2122

initialCount: number;

23+

info?: (message: string, meta?: Record<string, unknown>) => void;

2224

}): EmbeddedPiSubscribeContext {

2325

let compactionCount = params.initialCount;

2426

return {

@@ -37,6 +39,7 @@ function createCompactionContext(params: {

3739

} as never,

3840

log: {

3941

debug: vi.fn(),

42+

info: params.info ?? vi.fn(),

4043

warn: vi.fn(),

4144

},

4245

ensureCompactionPromise: vi.fn(),

@@ -103,6 +106,168 @@ describe("reconcileSessionStoreCompactionCountAfterSuccess", () => {

103106

});

104107

});

105108109+

describe("compaction lifecycle logging", () => {

110+

it("logs lifecycle events at info level for gateway watch visibility", async () => {

111+

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-compaction-log-"));

112+

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

113+

const sessionKey = "main";

114+

await seedSessionStore({

115+

storePath,

116+

sessionKey,

117+

compactionCount: 0,

118+

});

119+

const info = vi.fn();

120+

const ctx = createCompactionContext({

121+

storePath,

122+

sessionKey,

123+

initialCount: 0,

124+

info,

125+

});

126+127+

handleCompactionStart(ctx, {

128+

type: "compaction_start",

129+

reason: "threshold",

130+

});

131+

handleCompactionEnd(ctx, {

132+

type: "compaction_end",

133+

reason: "threshold",

134+

result: { kept: 12 },

135+

willRetry: false,

136+

aborted: false,

137+

});

138+139+

expect(info).toHaveBeenNthCalledWith(

140+

1,

141+

"embedded run auto-compaction start",

142+

expect.objectContaining({

143+

event: "embedded_run_compaction_start",

144+

reason: "threshold",

145+

runId: "run-test",

146+

consoleMessage: "embedded run auto-compaction start: runId=run-test reason=threshold",

147+

}),

148+

);

149+

expect(info).toHaveBeenNthCalledWith(

150+

2,

151+

"embedded run auto-compaction complete",

152+

expect.objectContaining({

153+

event: "embedded_run_compaction_end",

154+

reason: "threshold",

155+

runId: "run-test",

156+

completed: true,

157+

compactionCount: 1,

158+

consoleMessage:

159+

"embedded run auto-compaction complete: runId=run-test reason=threshold compactionCount=1 willRetry=false",

160+

}),

161+

);

162+

});

163+164+

it("logs manual compaction as incomplete when no result is produced", async () => {

165+

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-compaction-incomplete-log-"));

166+

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

167+

const sessionKey = "main";

168+

await seedSessionStore({

169+

storePath,

170+

sessionKey,

171+

compactionCount: 0,

172+

});

173+

const info = vi.fn();

174+

const ctx = createCompactionContext({

175+

storePath,

176+

sessionKey,

177+

initialCount: 0,

178+

info,

179+

});

180+181+

handleCompactionStart(ctx, {

182+

type: "compaction_start",

183+

reason: "manual",

184+

});

185+

handleCompactionEnd(ctx, {

186+

type: "compaction_end",

187+

reason: "manual",

188+

result: undefined,

189+

willRetry: false,

190+

aborted: false,

191+

});

192+193+

expect(info).toHaveBeenNthCalledWith(

194+

1,

195+

"embedded run manual compaction start",

196+

expect.objectContaining({

197+

event: "embedded_run_compaction_start",

198+

reason: "manual",

199+

runId: "run-test",

200+

consoleMessage: "embedded run manual compaction start: runId=run-test reason=manual",

201+

}),

202+

);

203+

expect(info).toHaveBeenNthCalledWith(

204+

2,

205+

"embedded run manual compaction incomplete",

206+

expect.objectContaining({

207+

event: "embedded_run_compaction_end",

208+

reason: "manual",

209+

runId: "run-test",

210+

completed: false,

211+

aborted: false,

212+

consoleMessage:

213+

"embedded run manual compaction incomplete: runId=run-test reason=manual aborted=false willRetry=false",

214+

}),

215+

);

216+

});

217+218+

it("defaults legacy synthetic compaction events to threshold logs", async () => {

219+

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-compaction-legacy-log-"));

220+

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

221+

const sessionKey = "main";

222+

await seedSessionStore({

223+

storePath,

224+

sessionKey,

225+

compactionCount: 0,

226+

});

227+

const info = vi.fn();

228+

const ctx = createCompactionContext({

229+

storePath,

230+

sessionKey,

231+

initialCount: 0,

232+

info,

233+

});

234+235+

handleCompactionStart(ctx, {

236+

type: "compaction_start",

237+

});

238+

handleCompactionEnd(ctx, {

239+

type: "compaction_end",

240+

result: { kept: 12 },

241+

willRetry: false,

242+

aborted: false,

243+

});

244+245+

expect(info).toHaveBeenNthCalledWith(

246+

1,

247+

"embedded run auto-compaction start",

248+

expect.objectContaining({

249+

event: "embedded_run_compaction_start",

250+

reason: "threshold",

251+

runId: "run-test",

252+

consoleMessage: "embedded run auto-compaction start: runId=run-test reason=threshold",

253+

}),

254+

);

255+

expect(info).toHaveBeenNthCalledWith(

256+

2,

257+

"embedded run auto-compaction complete",

258+

expect.objectContaining({

259+

event: "embedded_run_compaction_end",

260+

reason: "threshold",

261+

runId: "run-test",

262+

completed: true,

263+

compactionCount: 1,

264+

consoleMessage:

265+

"embedded run auto-compaction complete: runId=run-test reason=threshold compactionCount=1 willRetry=false",

266+

}),

267+

);

268+

});

269+

});

270+106271

describe("handleCompactionEnd", () => {

107272

it("reconciles the session store after a successful compaction end event", async () => {

108273

const tmp = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-compaction-handler-"));

@@ -122,10 +287,11 @@ describe("handleCompactionEnd", () => {

122287123288

handleCompactionEnd(ctx, {

124289

type: "compaction_end",

290+

reason: "threshold",

125291

result: { kept: 12 },

126292

willRetry: false,

127293

aborted: false,

128-

} as never);

294+

});

129295130296

await waitForCompactionCount({

131297

storePath,