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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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(update): restart managed gateway when update handoff ...
yetval · 2026-06-16 · via Recent Commits to openclaw:main

@@ -116,6 +116,92 @@ async function runHelperWithExistingSentinel(params: {

116116

return { result, sentinelPath };

117117

}

118118119+

async function spawnExitedPid(): Promise<number> {

120+

const { spawn } =

121+

await vi.importActual<typeof import("node:child_process")>("node:child_process");

122+

return await new Promise<number>((resolve) => {

123+

const child = spawn(process.execPath, ["-e", ""], { stdio: "ignore" });

124+

const pid = child.pid ?? 0;

125+

child.once("exit", () => resolve(pid));

126+

});

127+

}

128+129+

async function runHelperWithCommand(params: {

130+

commandArgv: string[];

131+

serviceRecovery?: Record<string, unknown>;

132+

pathPrepend?: string;

133+

}): Promise<{ code: number }> {

134+

const { execFile } =

135+

await vi.importActual<typeof import("node:child_process")>("node:child_process");

136+

const { startManagedServiceUpdateHandoff } = await import("./update-managed-service-handoff.js");

137+

const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-handoff-recovery-test-"));

138+

tempDirs.add(tmpDir);

139+140+

await startManagedServiceUpdateHandoff({

141+

root: tmpDir,

142+

timeoutMs: 1_800_000,

143+

restartDelayMs: 0,

144+

parentPid: process.pid,

145+

execPath: "/usr/local/bin/node",

146+

argv1: "/opt/openclaw/openclaw.mjs",

147+

env: {},

148+

meta: { sessionKey: "agent:test:webchat:dm:user-123" },

149+

});

150+151+

const [, args] = spawnMock.mock.calls.at(-1) as unknown as [string, string[]];

152+

const helperScriptPath = args[0] ?? "";

153+

tempDirs.add(path.dirname(helperScriptPath));

154+

const baseParams = JSON.parse(await fs.readFile(args[1] ?? "", "utf-8")) as Record<

155+

string,

156+

unknown

157+

>;

158+159+

const helperParamsPath = path.join(tmpDir, "helper-params.json");

160+

await fs.writeFile(

161+

helperParamsPath,

162+

`${JSON.stringify(

163+

{

164+

...baseParams,

165+

parentPid: await spawnExitedPid(),

166+

parentExitTimeoutMs: 5000,

167+

cwd: tmpDir,

168+

commandArgv: params.commandArgv,

169+

sentinelPath: path.join(tmpDir, "restart-sentinel.json"),

170+

logPath: path.join(tmpDir, "handoff.log"),

171+

sensitivePaths: [],

172+

...(params.serviceRecovery ? { serviceRecovery: params.serviceRecovery } : {}),

173+

},

174+

null,

175+

2,

176+

)}\n`,

177+

);

178+179+

const childEnv = {

180+

...process.env,

181+

...(params.pathPrepend

182+

? { PATH: `${params.pathPrepend}${path.delimiter}${process.env.PATH ?? ""}` }

183+

: {}),

184+

};

185+

return await new Promise<{ code: number }>((resolve) => {

186+

execFile(process.execPath, [helperScriptPath, helperParamsPath], { env: childEnv }, (err) => {

187+

const childError = err as NodeJS.ErrnoException | null;

188+

resolve({ code: typeof childError?.code === "number" ? childError.code : 0 });

189+

});

190+

});

191+

}

192+193+

async function writeFakeSystemctl(): Promise<{ binDir: string; recordPath: string }> {

194+

const binDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-recovery-bin-"));

195+

tempDirs.add(binDir);

196+

const recordPath = path.join(binDir, "systemctl-calls.log");

197+

await fs.writeFile(

198+

path.join(binDir, "systemctl"),

199+

`#!/bin/sh\necho "$@" >> '${recordPath}'\nexit 0\n`,

200+

{ mode: 0o755 },

201+

);

202+

return { binDir, recordPath };

203+

}

204+119205

describe("managed service update handoff", () => {

120206

it("strips process supervisor hints while preserving service identity for the CLI handoff", async () => {

121207

const { startManagedServiceUpdateHandoff, stripSupervisorHintEnv } =

@@ -244,7 +330,12 @@ describe("managed service update handoff", () => {

244330

const helperParams = JSON.parse(await fs.readFile(args[6] ?? "", "utf-8")) as {

245331

commandArgv?: string[];

246332

handoffId?: string;

333+

serviceRecovery?: unknown;

247334

};

335+

expect(helperParams.serviceRecovery).toEqual({

336+

kind: "systemd",

337+

unit: "openclaw-gateway.service",

338+

});

248339

expect(helperParams.commandArgv).toEqual([

249340

"/usr/local/bin/node",

250341

"/opt/openclaw/openclaw.mjs",

@@ -264,6 +355,75 @@ describe("managed service update handoff", () => {

264355

expect(options.env.OPENCLAW_UPDATE_RUN_HANDOFF).toBe("1");

265356

});

266357358+

it("starts the managed gateway service when the update command fails after handoff", async () => {

359+

const { binDir, recordPath } = await writeFakeSystemctl();

360+

const result = await runHelperWithCommand({

361+

commandArgv: [process.execPath, "-e", "process.exit(7)"],

362+

serviceRecovery: { kind: "systemd", unit: "openclaw-gateway.service" },

363+

pathPrepend: binDir,

364+

});

365+366+

expect(result.code).toBe(7);

367+

await expect(fs.readFile(recordPath, "utf-8")).resolves.toBe(

368+

"--user start openclaw-gateway.service\n",

369+

);

370+

});

371+372+

it("leaves the gateway service alone when the update command succeeds", async () => {

373+

const { binDir, recordPath } = await writeFakeSystemctl();

374+

const result = await runHelperWithCommand({

375+

commandArgv: [process.execPath, "-e", "process.exit(0)"],

376+

serviceRecovery: { kind: "systemd", unit: "openclaw-gateway.service" },

377+

pathPrepend: binDir,

378+

});

379+380+

expect(result.code).toBe(0);

381+

await expect(pathExists(recordPath)).resolves.toBe(false);

382+

});

383+384+

it("passes a gateway service recovery descriptor for each supervisor", async () => {

385+

const { startManagedServiceUpdateHandoff } =

386+

await import("./update-managed-service-handoff.js");

387+

const cases = [

388+

{

389+

supervisor: "launchd" as const,

390+

env: { OPENCLAW_LAUNCHD_LABEL: "com.example.openclaw.test", HOME: "/Users/test" },

391+

expected: {

392+

kind: "launchd",

393+

uid: typeof process.getuid === "function" ? process.getuid() : 501,

394+

label: "com.example.openclaw.test",

395+

plistPath: "/Users/test/Library/LaunchAgents/com.example.openclaw.test.plist",

396+

},

397+

},

398+

{

399+

supervisor: "schtasks" as const,

400+

env: { OPENCLAW_WINDOWS_TASK_NAME: "OpenClaw Test Gateway" },

401+

expected: { kind: "schtasks", taskName: "OpenClaw Test Gateway" },

402+

},

403+

];

404+405+

for (const testCase of cases) {

406+

const result = await startManagedServiceUpdateHandoff({

407+

root: "/tmp/openclaw",

408+

timeoutMs: 1_800_000,

409+

restartDelayMs: 500,

410+

parentPid: 12345,

411+

execPath: "/usr/local/bin/node",

412+

argv1: "/opt/openclaw/openclaw.mjs",

413+

supervisor: testCase.supervisor,

414+

env: testCase.env,

415+

meta: { sessionKey: "agent:test:webchat:dm:user-123" },

416+

});

417+

expect(result.status).toBe("started");

418+

const [, args] = spawnMock.mock.calls.at(-1) as unknown as [string, string[]];

419+

tempDirs.add(path.dirname(args[0] ?? ""));

420+

const helperParams = JSON.parse(await fs.readFile(args[1] ?? "", "utf-8")) as {

421+

serviceRecovery?: unknown;

422+

};

423+

expect(helperParams.serviceRecovery).toEqual(testCase.expected);

424+

}

425+

});

426+267427

it("does not overwrite a restart sentinel owned by another startup task", async () => {

268428

const unrelatedSentinel = {

269429

version: 1,