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

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

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
refactor(process): remove unused orphan reconciliation AP...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -107,7 +107,6 @@ vi.mock("../process/supervisor/index.js", () => ({

107107

spawn: supervisorSpawnMock,

108108

cancel: vi.fn(),

109109

cancelScope: vi.fn(),

110-

reconcileOrphans: vi.fn(),

111110

getRecord: vi.fn(),

112111

}),

113112

}));

Original file line numberDiff line numberDiff line change

@@ -14,7 +14,6 @@ const supervisorMock = vi.hoisted(() => ({

1414

spawn: vi.fn(),

1515

cancel: vi.fn(),

1616

cancelScope: vi.fn(),

17-

reconcileOrphans: vi.fn(),

1817

getRecord: vi.fn(),

1918

}));

2019

@@ -60,7 +59,6 @@ describe("exec foreground failures", () => {

6059

supervisorMock.spawn.mockReset();

6160

supervisorMock.cancel.mockReset();

6261

supervisorMock.cancelScope.mockReset();

63-

supervisorMock.reconcileOrphans.mockReset();

6462

supervisorMock.getRecord.mockReset();

6563

resetProcessRegistryForTests();

6664

});

Original file line numberDiff line numberDiff line change

@@ -25,7 +25,6 @@ vi.mock("../process/supervisor/index.js", () => ({

2525

spawn: supervisorSpawnMock,

2626

cancel: vi.fn(),

2727

cancelScope: vi.fn(),

28-

reconcileOrphans: vi.fn(),

2928

getRecord: vi.fn(),

3029

}),

3130

}));

Original file line numberDiff line numberDiff line change

@@ -184,7 +184,6 @@ vi.mock("../process/supervisor/index.js", () => {

184184

},

185185

cancel: vi.fn(),

186186

cancelScope: vi.fn(),

187-

reconcileOrphans: vi.fn(),

188187

getRecord: vi.fn(),

189188

}),

190189

};

Original file line numberDiff line numberDiff line change

@@ -63,7 +63,6 @@ vi.mock("../process/supervisor/index.js", () => {

6363

},

6464

cancel: vi.fn(),

6565

cancelScope: vi.fn(),

66-

reconcileOrphans: vi.fn(),

6766

getRecord: vi.fn(),

6867

}),

6968

};

Original file line numberDiff line numberDiff line change

@@ -107,7 +107,6 @@ vi.mock("../process/supervisor/index.js", () => ({

107107

},

108108

cancel: vi.fn(),

109109

cancelScope: vi.fn(),

110-

reconcileOrphans: vi.fn(),

111110

getRecord: vi.fn(),

112111

}),

113112

}));

Original file line numberDiff line numberDiff line change

@@ -98,7 +98,6 @@ vi.mock("../process/supervisor/index.js", () => ({

9898

},

9999

cancel: vi.fn(),

100100

cancelScope: vi.fn(),

101-

reconcileOrphans: vi.fn(),

102101

getRecord: vi.fn(),

103102

}),

104103

}));

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,6 @@ const { supervisorMock } = vi.hoisted(() => ({

99

spawn: vi.fn(),

1010

cancel: vi.fn(),

1111

cancelScope: vi.fn(),

12-

reconcileOrphans: vi.fn(),

1312

getRecord: vi.fn(),

1413

},

1514

}));

@@ -87,7 +86,6 @@ describe("process tool supervisor cancellation", () => {

8786

supervisorMock.spawn.mockClear();

8887

supervisorMock.cancel.mockClear();

8988

supervisorMock.cancelScope.mockClear();

90-

supervisorMock.reconcileOrphans.mockClear();

9189

supervisorMock.getRecord.mockClear();

9290

killProcessTreeMock.mockClear();

9391

});

Original file line numberDiff line numberDiff line change

@@ -234,7 +234,6 @@ vi.mock("../process/supervisor/index.js", () => {

234234

},

235235

cancel: vi.fn(),

236236

cancelScope: vi.fn(),

237-

reconcileOrphans: vi.fn(),

238237

getRecord: vi.fn(),

239238

}),

240239

};

Original file line numberDiff line numberDiff line change

@@ -1809,7 +1809,6 @@ describe("runCliAgent spawn path", () => {

18091809

supervisorSpawnMock(params) as ReturnType<SupervisorSpawnFn>,

18101810

cancel: vi.fn(),

18111811

cancelScope: vi.fn(),

1812-

reconcileOrphans: vi.fn(),

18131812

getRecord: vi.fn(),

18141813

}),

18151814

onAssistantDelta: () => {},

@@ -2049,7 +2048,6 @@ ${JSON.stringify({

20492048

supervisorSpawnMock(params) as ReturnType<SupervisorSpawnFn>,

20502049

cancel: vi.fn(),

20512050

cancelScope: vi.fn(),

2052-

reconcileOrphans: vi.fn(),

20532051

getRecord: vi.fn(),

20542052

}),

20552053

onAssistantDelta: () => {},

@@ -2860,7 +2858,6 @@ ${JSON.stringify({

28602858

supervisorSpawnMock(params) as ReturnType<SupervisorSpawnFn>,

28612859

cancel: vi.fn(),

28622860

cancelScope: vi.fn(),

2863-

reconcileOrphans: vi.fn(),

28642861

getRecord: vi.fn(),

28652862

}),

28662863

onAssistantDelta: () => {},