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

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
H
Help Net Security
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
D
Docker
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

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: add restart recovery lifecycle seam (#93735) · ...
jalehman · 2026-06-18 · via Recent Commits to openclaw:main

@@ -15,8 +15,8 @@ import {

1515

resolveAllAgentSessionStoreTargetsSync,

1616

resolveSessionFilePath,

1717

resolveSessionTranscriptPathInDir,

18-

updateSessionStore,

1918

} from "../config/sessions.js";

19+

import { applyRestartRecoveryLifecycle } from "../config/sessions/session-accessor.js";

2020

import type { OpenClawConfig } from "../config/types.openclaw.js";

2121

import { callGateway } from "../gateway/call.js";

2222

import { readSessionMessagesAsync } from "../gateway/session-transcript-readers.js";

@@ -213,13 +213,13 @@ export async function markRestartAbortedMainSessions(params: {

213213

}

214214215215

for (const storePath of storePaths) {

216-

await updateSessionStore(

216+

const storeResult = await applyRestartRecoveryLifecycle({

217217

storePath,

218-

(store) => {

219-

for (const [sessionKey, entry] of Object.entries(store)) {

220-

if (!entry) {

221-

continue;

222-

}

218+

requireWriteSuccess: true,

219+

update: (entries) => {

220+

const replacements: Array<{ sessionKey: string; entry: SessionEntry }> = [];

221+

const counts = { marked: 0, skipped: 0 };

222+

for (const { sessionKey, entry } of entries) {

223223

const registeredActiveRuns = listAgentRunsForSession({

224224

sessionKey,

225225

sessionId: entry.sessionId,

@@ -248,7 +248,7 @@ export async function markRestartAbortedMainSessions(params: {

248248

continue;

249249

}

250250

if (shouldSkipMainRecovery(entry, sessionKey)) {

251-

result.skipped++;

251+

counts.skipped++;

252252

continue;

253253

}

254254

const wasRunning = entry.status === "running";

@@ -288,12 +288,14 @@ export async function markRestartAbortedMainSessions(params: {

288288

: a.runId.localeCompare(b.runId),

289289

);

290290

entry.updatedAt = Date.now();

291-

store[sessionKey] = entry;

292-

result.marked++;

291+

replacements.push({ sessionKey, entry });

292+

counts.marked++;

293293

}

294+

return { result: counts, replacements };

294295

},

295-

{ skipMaintenance: true, requireWriteSuccess: true },

296-

);

296+

});

297+

result.marked += storeResult.marked;

298+

result.skipped += storeResult.skipped;

297299

}

298300299301

if (result.marked > 0) {

@@ -327,18 +329,17 @@ export async function markStartupOrphanedMainSessionsForRecovery(params: {

327329

providedActiveSessionKeys ?? normalizeStringSet(listActiveEmbeddedRunSessionKeys());

328330329331

for (const storePath of await resolveRestartRecoveryStorePaths(params)) {

330-

await updateSessionStore(

332+

const storeResult = await applyRestartRecoveryLifecycle({

331333

storePath,

332-

(store) => {

333-

for (const [sessionKey, entry] of Object.entries(store)) {

334-

if (!entry) {

335-

continue;

336-

}

334+

update: (entries) => {

335+

const replacements: Array<{ sessionKey: string; entry: SessionEntry }> = [];

336+

const counts = { marked: 0, skipped: 0 };

337+

for (const { sessionKey, entry } of entries) {

337338

if (entry.status !== "running" || entry.abortedLastRun === true) {

338339

continue;

339340

}

340341

if (shouldSkipMainRecovery(entry, sessionKey)) {

341-

result.skipped++;

342+

counts.skipped++;

342343

continue;

343344

}

344345

const updatedAt = normalizeFiniteTimestamp(entry.updatedAt);

@@ -361,12 +362,14 @@ export async function markStartupOrphanedMainSessionsForRecovery(params: {

361362

}

362363

entry.abortedLastRun = true;

363364

entry.updatedAt = Date.now();

364-

store[sessionKey] = entry;

365-

result.marked++;

365+

replacements.push({ sessionKey, entry });

366+

counts.marked++;

366367

}

368+

return { result: counts, replacements };

367369

},

368-

{ skipMaintenance: true },

369-

);

370+

});

371+

result.marked += storeResult.marked;

372+

result.skipped += storeResult.skipped;

370373

}

371374372375

if (result.marked > 0) {

@@ -438,12 +441,13 @@ async function markSessionFailed(params: {

438441

sessionKey: string;

439442

reason: string;

440443

}): Promise<void> {

441-

await updateSessionStore(

442-

params.storePath,

443-

(store) => {

444-

const entry = store[params.sessionKey];

444+

await applyRestartRecoveryLifecycle({

445+

storePath: params.storePath,

446+

update: (entries) => {

447+

const current = entries.find((entry) => entry.sessionKey === params.sessionKey);

448+

const entry = current?.entry;

445449

if (!entry || entry.status !== "running") {

446-

return;

450+

return { result: undefined };

447451

}

448452

entry.status = "failed";

449453

entry.abortedLastRun = true;

@@ -458,10 +462,12 @@ async function markSessionFailed(params: {

458462

entry.pendingFinalDeliveryContext = undefined;

459463

entry.restartRecoveryDeliveryContext = undefined;

460464

entry.restartRecoveryDeliveryRunId = undefined;

461-

store[params.sessionKey] = entry;

465+

return {

466+

result: undefined,

467+

replacements: [{ sessionKey: params.sessionKey, entry }],

468+

};

462469

},

463-

{ skipMaintenance: true },

464-

);

470+

});

465471

log.warn(`marked interrupted main session failed: ${params.sessionKey} (${params.reason})`);

466472

}

467473

@@ -594,12 +600,13 @@ async function resumeMainSession(params: {

594600

params: agentParams,

595601

timeoutMs: 10_000,

596602

});

597-

await updateSessionStore(

598-

params.storePath,

599-

(store) => {

600-

const entry = store[params.sessionKey];

603+

await applyRestartRecoveryLifecycle({

604+

storePath: params.storePath,

605+

update: (entries) => {

606+

const current = entries.find((entry) => entry.sessionKey === params.sessionKey);

607+

const entry = current?.entry;

601608

if (!entry) {

602-

return;

609+

return { result: undefined };

603610

}

604611

const now = Date.now();

605612

entry.abortedLastRun = false;

@@ -621,10 +628,12 @@ async function resumeMainSession(params: {

621628

entry.pendingFinalDeliveryContext = undefined;

622629

}

623630

}

624-

store[params.sessionKey] = entry;

631+

return {

632+

result: undefined,

633+

replacements: [{ sessionKey: params.sessionKey, entry }],

634+

};

625635

},

626-

{ skipMaintenance: true },

627-

);

636+

});

628637

log.info(

629638

`resumed interrupted main session: ${params.sessionKey}${

630639

sanitizedPendingText ? " (with pending payload)" : ""

@@ -653,28 +662,32 @@ export async function markRestartAbortedMainSessionsFromLocks(params: {

653662

}

654663655664

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

656-

await updateSessionStore(

665+

const storeResult = await applyRestartRecoveryLifecycle({

657666

storePath,

658-

(store) => {

659-

for (const [sessionKey, entry] of Object.entries(store)) {

660-

if (!entry || entry.status !== "running") {

667+

update: (entries) => {

668+

const replacements: Array<{ sessionKey: string; entry: SessionEntry }> = [];

669+

const counts = { marked: 0, skipped: 0 };

670+

for (const { sessionKey, entry } of entries) {

671+

if (entry.status !== "running") {

661672

continue;

662673

}

663674

if (shouldSkipMainRecovery(entry, sessionKey)) {

664-

result.skipped++;

675+

counts.skipped++;

665676

continue;

666677

}

667678

const entryLockPaths = resolveEntryTranscriptLockPaths({ entry, sessionsDir });

668679

if (!entryLockPaths.some((lockPath) => interruptedLockPaths.has(lockPath))) {

669680

continue;

670681

}

671682

entry.abortedLastRun = true;

672-

store[sessionKey] = entry;

673-

result.marked++;

683+

replacements.push({ sessionKey, entry });

684+

counts.marked++;

674685

}

686+

return { result: counts, replacements };

675687

},

676-

{ skipMaintenance: true },

677-

);

688+

});

689+

result.marked += storeResult.marked;

690+

result.skipped += storeResult.skipped;

678691679692

if (result.marked > 0) {

680693

log.warn(`marked ${result.marked} interrupted main session(s) from stale transcript locks`);