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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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): prune stale gateway model-run sessions · o...
2026-06-25 · via Recent Commits to openclaw:main

@@ -126,6 +126,7 @@ describe("sessionsCleanupCommand", () => {

126126

cappedKeys: Set<string>;

127127

budgetEvictedKeys: Set<string>;

128128

dmScopeRetiredKeys: Set<string>;

129+

modelRunPrunedKeys?: Set<string>;

129130

}) => {

130131

if (params.dmScopeRetiredKeys.has(params.key)) {

131132

return "retire-dm-scope";

@@ -192,6 +193,7 @@ describe("sessionsCleanupCommand", () => {

192193

afterCount: 1,

193194

missing: 0,

194195

dmScopeRetired: 0,

196+

modelRunPruned: 0,

195197

pruned: 0,

196198

capped: 2,

197199

diskBudget: {

@@ -231,6 +233,7 @@ describe("sessionsCleanupCommand", () => {

231233

afterCount: 1,

232234

missing: 0,

233235

dmScopeRetired: 0,

236+

modelRunPruned: 0,

234237

pruned: 0,

235238

capped: 2,

236239

diskBudget: {

@@ -267,6 +270,7 @@ describe("sessionsCleanupCommand", () => {

267270

afterCount: 1,

268271

missing: 0,

269272

dmScopeRetired: 0,

273+

modelRunPruned: 0,

270274

pruned: 2,

271275

capped: 0,

272276

diskBudget: null,

@@ -300,6 +304,7 @@ describe("sessionsCleanupCommand", () => {

300304

afterCount: 1,

301305

missing: 0,

302306

dmScopeRetired: 0,

307+

modelRunPruned: 0,

303308

pruned: 2,

304309

capped: 0,

305310

diskBudget: null,

@@ -323,6 +328,7 @@ describe("sessionsCleanupCommand", () => {

323328

afterCount: 1,

324329

missing: 0,

325330

dmScopeRetired: 0,

331+

modelRunPruned: 0,

326332

pruned: 1,

327333

capped: 0,

328334

diskBudget: {

@@ -343,6 +349,7 @@ describe("sessionsCleanupCommand", () => {

343349

cappedKeys: new Set<string>(),

344350

budgetEvictedKeys: new Set<string>(),

345351

dmScopeRetiredKeys: new Set<string>(),

352+

modelRunPrunedKeys: new Set<string>(),

346353

},

347354

],

348355

appliedSummaries: [],

@@ -367,6 +374,7 @@ describe("sessionsCleanupCommand", () => {

367374

afterCount: 1,

368375

missing: 0,

369376

dmScopeRetired: 0,

377+

modelRunPruned: 0,

370378

pruned: 1,

371379

capped: 0,

372380

diskBudget: {

@@ -400,6 +408,7 @@ describe("sessionsCleanupCommand", () => {

400408

afterCount: 0,

401409

missing: 1,

402410

dmScopeRetired: 0,

411+

modelRunPruned: 0,

403412

pruned: 0,

404413

capped: 0,

405414

diskBudget: null,

@@ -411,6 +420,7 @@ describe("sessionsCleanupCommand", () => {

411420

cappedKeys: new Set<string>(),

412421

budgetEvictedKeys: new Set<string>(),

413422

dmScopeRetiredKeys: new Set<string>(),

423+

modelRunPrunedKeys: new Set<string>(),

414424

},

415425

],

416426

appliedSummaries: [],

@@ -436,6 +446,7 @@ describe("sessionsCleanupCommand", () => {

436446

afterCount: 0,

437447

missing: 1,

438448

dmScopeRetired: 0,

449+

modelRunPruned: 0,

439450

pruned: 0,

440451

capped: 0,

441452

diskBudget: null,

@@ -458,6 +469,7 @@ describe("sessionsCleanupCommand", () => {

458469

afterCount: 1,

459470

missing: 0,

460471

dmScopeRetired: 0,

472+

modelRunPruned: 0,

461473

pruned: 1,

462474

capped: 0,

463475

unreferencedArtifacts: {

@@ -478,6 +490,7 @@ describe("sessionsCleanupCommand", () => {

478490

cappedKeys: new Set<string>(),

479491

budgetEvictedKeys: new Set<string>(),

480492

dmScopeRetiredKeys: new Set<string>(),

493+

modelRunPrunedKeys: new Set<string>(),

481494

},

482495

],

483496

appliedSummaries: [],

@@ -620,6 +633,7 @@ describe("sessionsCleanupCommand", () => {

620633

afterCount: 0,

621634

missing: 0,

622635

dmScopeRetired: 0,

636+

modelRunPruned: 0,

623637

pruned: 1,

624638

capped: 0,

625639

diskBudget: null,

@@ -631,6 +645,7 @@ describe("sessionsCleanupCommand", () => {

631645

cappedKeys: new Set<string>(),

632646

budgetEvictedKeys: new Set<string>(),

633647

dmScopeRetiredKeys: new Set<string>(),

648+

modelRunPrunedKeys: new Set<string>(),

634649

},

635650

{

636651

summary: {

@@ -642,6 +657,7 @@ describe("sessionsCleanupCommand", () => {

642657

afterCount: 0,

643658

missing: 0,

644659

dmScopeRetired: 0,

660+

modelRunPruned: 0,

645661

pruned: 1,

646662

capped: 0,

647663

diskBudget: null,

@@ -653,6 +669,7 @@ describe("sessionsCleanupCommand", () => {

653669

cappedKeys: new Set<string>(),

654670

budgetEvictedKeys: new Set<string>(),

655671

dmScopeRetiredKeys: new Set<string>(),

672+

modelRunPrunedKeys: new Set<string>(),

656673

},

657674

],

658675

appliedSummaries: [],

@@ -683,6 +700,7 @@ describe("sessionsCleanupCommand", () => {

683700

afterCount: 0,

684701

missing: 0,

685702

dmScopeRetired: 0,

703+

modelRunPruned: 0,

686704

pruned: 1,

687705

capped: 0,

688706

diskBudget: null,

@@ -697,6 +715,7 @@ describe("sessionsCleanupCommand", () => {

697715

afterCount: 0,

698716

missing: 0,

699717

dmScopeRetired: 0,

718+

modelRunPruned: 0,

700719

pruned: 1,

701720

capped: 0,

702721

diskBudget: null,