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

推荐订阅源

V
Visual Studio Blog
月光博客
月光博客
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
人人都是产品经理
人人都是产品经理
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
Last Week in AI
Last Week in AI

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(sessions): align forced model-run prune with cap evic...
2026-06-25 · via Recent Commits to openclaw:main

@@ -222,6 +222,56 @@ describe("applyFileBackedSessionStoreMaintenance", () => {

222222

]);

223223

expect(trajectoryCleanupReferencedIds).toEqual(new Set(["shared-session", "active-session"]));

224224

});

225+226+

it("forced cleanup prunes stale model-run probes before the cap evicts real sessions", async () => {

227+

const now = Date.now();

228+

const staleProbe = "agent:main:explicit:model-run-123e4567-e89b-12d3-a456-426614174099";

229+

const store: Record<string, SessionEntry> = {

230+

[staleProbe]: makeEntry(now - 2 * DAY_MS),

231+

};

232+

for (let i = 0; i < 50; i++) {

233+

store[`agent:main:explicit:real-${i}`] = makeEntry(now - 3 * DAY_MS);

234+

}

235+

let report: { modelRunPruned: number; pruned: number; capped: number } | undefined;

236+237+

const result = await applyFileBackedSessionStoreMaintenance({

238+

storePath: "/tmp/openclaw-sessions/sessions.json",

239+

store,

240+

maintenanceConfig: {

241+

mode: "enforce",

242+

pruneAfterMs: 7 * DAY_MS,

243+

maxEntries: 50,

244+

modelRunPruneAfterMs: DAY_MS,

245+

modelRunPruneAfterConfigured: false,

246+

resetArchiveRetentionMs: null,

247+

maxDiskBytes: null,

248+

highWaterBytes: null,

249+

},

250+

maintenanceOverride: { mode: "enforce" },

251+

onMaintenanceApplied: (applied) => {

252+

report = {

253+

modelRunPruned: applied.modelRunPruned,

254+

pruned: applied.pruned,

255+

capped: applied.capped,

256+

};

257+

},

258+

log: { warn: () => {}, info: () => {} },

259+

artifacts: {

260+

archiveRemovedSessionTranscripts: async () => new Set(),

261+

removeRemovedSessionTrajectoryArtifacts: async () => {},

262+

cleanupArchivedSessionTranscripts: async () => {},

263+

},

264+

});

265+266+

expect(result.changedStore).toBe(true);

267+

expect(report?.modelRunPruned).toBe(1);

268+

expect(report?.capped).toBe(0);

269+

expect(store[staleProbe]).toBeUndefined();

270+

expect(Object.keys(store)).toHaveLength(50);

271+

for (let i = 0; i < 50; i++) {

272+

expect(store).toHaveProperty(`agent:main:explicit:real-${i}`);

273+

}

274+

});

225275

});

226276227277

describe("pruneStaleModelRunEntries", () => {

@@ -520,6 +570,61 @@ describe("resolveMaintenanceConfigFromInput", () => {

520570

expect(maintenance.mode).toBe("enforce");

521571

});

522572573+

it("defaults gateway model-run probes to 24h retention with override and disable support", () => {

574+

expect(resolveMaintenanceConfigFromInput().modelRunPruneAfterMs).toBe(DAY_MS);

575+

expect(

576+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: "48h" }).modelRunPruneAfterMs,

577+

).toBe(2 * DAY_MS);

578+

expect(

579+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: false }).modelRunPruneAfterMs,

580+

).toBe(null);

581+

expect(resolveMaintenanceConfigFromInput().modelRunPruneAfterConfigured).toBe(false);

582+

expect(

583+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: "48h" }).modelRunPruneAfterConfigured,

584+

).toBe(true);

585+

expect(

586+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: false }).modelRunPruneAfterConfigured,

587+

).toBe(true);

588+

expect(

589+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: "bad" }).modelRunPruneAfterMs,

590+

).toBe(null);

591+

expect(

592+

resolveMaintenanceConfigFromInput({ modelRunPruneAfter: "bad" }).modelRunPruneAfterConfigured,

593+

).toBe(true);

594+

});

595+596+

it("force-gates the unset model-run prune default to the cap-eviction threshold", () => {

597+

const defaultMaintenance = resolveMaintenanceConfigFromInput({ maxEntries: 50 });

598+

expect(resolveSessionEntryMaintenanceHighWater(50)).toBe(75);

599+

expect(shouldRunModelRunPrune({ maintenance: defaultMaintenance, entryCount: 60 })).toBe(false);

600+

expect(

601+

shouldRunModelRunPrune({ maintenance: defaultMaintenance, entryCount: 60, force: true }),

602+

).toBe(true);

603+

expect(

604+

shouldRunModelRunPrune({ maintenance: defaultMaintenance, entryCount: 50, force: true }),

605+

).toBe(false);

606+

expect(

607+

shouldRunModelRunPrune({

608+

maintenance: resolveMaintenanceConfigFromInput({

609+

maxEntries: 50,

610+

modelRunPruneAfter: "24h",

611+

}),

612+

entryCount: 1,

613+

force: true,

614+

}),

615+

).toBe(true);

616+

expect(

617+

shouldRunModelRunPrune({

618+

maintenance: resolveMaintenanceConfigFromInput({

619+

maxEntries: 50,

620+

modelRunPruneAfter: false,

621+

}),

622+

entryCount: 60,

623+

force: true,

624+

}),

625+

).toBe(false);

626+

});

627+523628

it("batches normal entry-count maintenance for production-sized caps", () => {

524629

expect(resolveSessionEntryMaintenanceHighWater(2)).toBe(3);

525630

expect(resolveSessionEntryMaintenanceHighWater(50)).toBe(75);