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

推荐订阅源

V
Visual Studio Blog
U
Unit 42
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
博客园 - 司徒正美
Vercel News
Vercel News
I
InfoQ
GbyAI
GbyAI
C
Check Point Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
B
Blog
MyScale Blog
MyScale Blog
腾讯CDC
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)

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: restart package updates through updated install · op...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -17,7 +17,7 @@ import { formatConfigIssueLines } from "../../config/issue-format.js";

1717

import { asResolvedSourceConfig, asRuntimeConfig } from "../../config/materialize.js";

1818

import { resolveGatewayInstallEntrypoint } from "../../daemon/gateway-entrypoint.js";

1919

import { resolveGatewayRestartLogPath } from "../../daemon/restart-logs.js";

20-

import { resolveGatewayService } from "../../daemon/service.js";

20+

import { readGatewayServiceState, resolveGatewayService } from "../../daemon/service.js";

2121

import { createLowDiskSpaceWarning } from "../../infra/disk-space.js";

2222

import { runGlobalPackageUpdateSteps } from "../../infra/package-update-steps.js";

2323

import { nodeVersionSatisfiesEngine } from "../../infra/runtime-guard.js";

@@ -133,6 +133,24 @@ function pickUpdateQuip(): string {

133133

function isPackageManagerUpdateMode(mode: UpdateRunResult["mode"]): mode is "npm" | "pnpm" | "bun" {

134134

return mode === "npm" || mode === "pnpm" || mode === "bun";

135135

}

136+137+

export function shouldPrepareUpdatedInstallRestart(params: {

138+

updateMode: UpdateRunResult["mode"];

139+

serviceInstalled: boolean;

140+

serviceLoaded: boolean;

141+

}): boolean {

142+

if (isPackageManagerUpdateMode(params.updateMode)) {

143+

return params.serviceInstalled;

144+

}

145+

return params.serviceLoaded;

146+

}

147+148+

export function shouldUseLegacyProcessRestartAfterUpdate(params: {

149+

updateMode: UpdateRunResult["mode"];

150+

}): boolean {

151+

return !isPackageManagerUpdateMode(params.updateMode);

152+

}

153+136154

function formatCommandFailure(stdout: string, stderr: string): string {

137155

const detail = (stderr || stdout).trim();

138156

if (!detail) {

@@ -267,6 +285,7 @@ async function refreshGatewayServiceEnv(params: {

267285

result: UpdateRunResult;

268286

jsonMode: boolean;

269287

invocationCwd?: string;

288+

env?: NodeJS.ProcessEnv;

270289

}): Promise<void> {

271290

const args = ["gateway", "install", "--force"];

272291

if (params.jsonMode) {

@@ -277,7 +296,7 @@ async function refreshGatewayServiceEnv(params: {

277296

if (entrypoint) {

278297

const res = await runCommandWithTimeout([resolveNodeRunner(), entrypoint, ...args], {

279298

cwd: params.result.root,

280-

env: resolveServiceRefreshEnv(process.env, params.invocationCwd),

299+

env: resolveServiceRefreshEnv(params.env ?? process.env, params.invocationCwd),

281300

timeoutMs: SERVICE_REFRESH_TIMEOUT_MS,

282301

});

283302

if (res.code === 0) {

@@ -288,9 +307,45 @@ async function refreshGatewayServiceEnv(params: {

288307

);

289308

}

290309310+

if (isPackageManagerUpdateMode(params.result.mode)) {

311+

throw new Error(

312+

`updated install entrypoint not found under ${params.result.root ?? "unknown"}`,

313+

);

314+

}

315+291316

await runDaemonInstall({ force: true, json: params.jsonMode || undefined });

292317

}

293318319+

async function runUpdatedInstallGatewayRestart(params: {

320+

result: UpdateRunResult;

321+

jsonMode: boolean;

322+

invocationCwd?: string;

323+

env?: NodeJS.ProcessEnv;

324+

}): Promise<boolean> {

325+

const entrypoint = await resolveGatewayInstallEntrypoint(params.result.root);

326+

if (!entrypoint) {

327+

throw new Error(

328+

`updated install entrypoint not found under ${params.result.root ?? "unknown"}`,

329+

);

330+

}

331+332+

const args = ["gateway", "restart"];

333+

if (params.jsonMode) {

334+

args.push("--json");

335+

}

336+

const res = await runCommandWithTimeout([resolveNodeRunner(), entrypoint, ...args], {

337+

cwd: params.result.root,

338+

env: resolveServiceRefreshEnv(params.env ?? process.env, params.invocationCwd),

339+

timeoutMs: SERVICE_REFRESH_TIMEOUT_MS,

340+

});

341+

if (res.code === 0) {

342+

return true;

343+

}

344+

throw new Error(

345+

`updated install restart failed (${entrypoint}): ${formatCommandFailure(res.stdout, res.stderr)}`,

346+

);

347+

}

348+294349

async function tryInstallShellCompletion(opts: {

295350

jsonMode: boolean;

296351

skipPrompt: boolean;

@@ -739,11 +794,26 @@ async function maybeRestartService(params: {

739794

result: UpdateRunResult;

740795

opts: UpdateCommandOptions;

741796

refreshServiceEnv: boolean;

797+

serviceEnv?: NodeJS.ProcessEnv;

742798

gatewayPort: number;

743799

restartScriptPath?: string | null;

744800

invocationCwd?: string;

745801

}): Promise<boolean> {

746802

const verifyRestartedGateway = async (expectedGatewayVersion: string | undefined) => {

803+

const restartAfterStaleCleanup = async () => {

804+

if (params.refreshServiceEnv && isPackageManagerUpdateMode(params.result.mode)) {

805+

await runUpdatedInstallGatewayRestart({

806+

result: params.result,

807+

jsonMode: Boolean(params.opts.json),

808+

invocationCwd: params.invocationCwd,

809+

env: params.serviceEnv,

810+

});

811+

return;

812+

}

813+

if (shouldUseLegacyProcessRestartAfterUpdate({ updateMode: params.result.mode })) {

814+

await runDaemonRestart();

815+

}

816+

};

747817

const service = resolveGatewayService();

748818

let health = await waitForGatewayHealthyRestart({

749819

service,

@@ -759,7 +829,7 @@ async function maybeRestartService(params: {

759829

);

760830

}

761831

await terminateStaleGatewayPids(health.staleGatewayPids);

762-

await runDaemonRestart();

832+

await restartAfterStaleCleanup();

763833

health = await waitForGatewayHealthyRestart({

764834

service,

765835

port: params.gatewayPort,

@@ -799,6 +869,7 @@ async function maybeRestartService(params: {

799869

const expectedGatewayVersion = isPackageManagerUpdateMode(params.result.mode)

800870

? normalizeOptionalString(params.result.after?.version)

801871

: undefined;

872+

const isPackageUpdate = isPackageManagerUpdateMode(params.result.mode);

802873

let restarted = false;

803874

let restartInitiated = false;

804875

if (params.refreshServiceEnv) {

@@ -807,6 +878,7 @@ async function maybeRestartService(params: {

807878

result: params.result,

808879

jsonMode: Boolean(params.opts.json),

809880

invocationCwd: params.invocationCwd,

881+

env: params.serviceEnv,

810882

});

811883

} catch (err) {

812884

// Always log the refresh failure so callers can detect it (issue #56772).

@@ -818,16 +890,25 @@ async function maybeRestartService(params: {

818890

} else {

819891

defaultRuntime.log(theme.warn(message));

820892

}

821-

if (isPackageManagerUpdateMode(params.result.mode)) {

893+

if (isPackageUpdate) {

822894

return false;

823895

}

824896

}

825897

}

826898

if (params.restartScriptPath) {

827899

await runRestartScript(params.restartScriptPath);

828900

restartInitiated = true;

829-

} else {

901+

} else if (params.refreshServiceEnv && isPackageUpdate) {

902+

restarted = await runUpdatedInstallGatewayRestart({

903+

result: params.result,

904+

jsonMode: Boolean(params.opts.json),

905+

invocationCwd: params.invocationCwd,

906+

env: params.serviceEnv,

907+

});

908+

} else if (shouldUseLegacyProcessRestartAfterUpdate({ updateMode: params.result.mode })) {

830909

restarted = await runDaemonRestart();

910+

} else if (!params.opts.json) {

911+

defaultRuntime.log(theme.muted("No installed gateway service found; skipped restart."));

831912

}

832913833914

const shouldVerifyRestart =

@@ -871,6 +952,9 @@ async function maybeRestartService(params: {

871952

),

872953

);

873954

}

955+

if (isPackageManagerUpdateMode(params.result.mode)) {

956+

return false;

957+

}

874958

}

875959

return true;

876960

}

@@ -1419,15 +1503,25 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

1419150314201504

let restartScriptPath: string | null = null;

14211505

let refreshGatewayServiceEnv = false;

1506+

let gatewayServiceEnv: NodeJS.ProcessEnv | undefined;

14221507

const gatewayPort = resolveGatewayPort(

14231508

postUpdateConfigSnapshot.valid ? postUpdateConfigSnapshot.config : undefined,

14241509

process.env,

14251510

);

14261511

if (shouldRestart) {

14271512

try {

1428-

const loaded = await resolveGatewayService().isLoaded({ env: process.env });

1429-

if (loaded) {

1430-

restartScriptPath = await prepareRestartScript(process.env, gatewayPort);

1513+

const serviceState = await readGatewayServiceState(resolveGatewayService(), {

1514+

env: process.env,

1515+

});

1516+

if (

1517+

shouldPrepareUpdatedInstallRestart({

1518+

updateMode: resultWithPostUpdate.mode,

1519+

serviceInstalled: serviceState.installed,

1520+

serviceLoaded: serviceState.loaded,

1521+

})

1522+

) {

1523+

gatewayServiceEnv = serviceState.env;

1524+

restartScriptPath = await prepareRestartScript(serviceState.env, gatewayPort);

14311525

refreshGatewayServiceEnv = true;

14321526

}

14331527

} catch {

@@ -1446,6 +1540,7 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

14461540

result: resultWithPostUpdate,

14471541

opts,

14481542

refreshServiceEnv: refreshGatewayServiceEnv,

1543+

serviceEnv: gatewayServiceEnv,

14491544

gatewayPort,

14501545

restartScriptPath,

14511546

invocationCwd,