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

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
B
Blog
F
Fortinet All Blogs
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
A
About on SuperTechFans
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
B
Blog RSS Feed

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(scripts): stop rpc rtt process groups · openclaw/open...
vincentkoc · 2026-06-03 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ const DEFAULT_METHODS = ["health", "config.get"];

1111

const DEFAULT_ITERATIONS = 10;

1212

export const READY_TIMEOUT_MS = 120_000;

1313

export const READY_PROBE_TIMEOUT_MS = 1_000;

14+

const PARENT_TERMINATION_SIGNALS = ["SIGHUP", "SIGINT", "SIGTERM"];

1415

const IS_DIRECT_RUN =

1516

typeof process.argv[1] === "string" &&

1617

path.resolve(process.argv[1]) === fileURLToPath(import.meta.url);

@@ -143,20 +144,117 @@ export async function waitForGatewayReady({

143144

throw new Error(`gateway did not become ready after ${readyTimeoutMs}ms\n${stderr.slice(-4000)}`);

144145

}

145146146-

async function stopGateway(child) {

147-

if (child.exitCode !== null || child.signalCode !== null) {

147+

function isProcessAlreadyExitedError(error) {

148+

return error && typeof error === "object" && error.code === "ESRCH";

149+

}

150+151+

function defaultKillProcess(pid, signal) {

152+

return process.kill(pid, signal);

153+

}

154+155+

async function defaultOpen(filePath, flags) {

156+

return await fs.open(filePath, flags);

157+

}

158+159+

export function signalGatewayProcess(child, signal, killProcess = defaultKillProcess) {

160+

if (process.platform !== "win32" && typeof child.pid === "number") {

161+

try {

162+

killProcess(-child.pid, signal);

163+

return true;

164+

} catch (error) {

165+

if (isProcessAlreadyExitedError(error)) {

166+

return false;

167+

}

168+

throw error;

169+

}

170+

}

171+

try {

172+

return child.kill(signal);

173+

} catch (error) {

174+

if (isProcessAlreadyExitedError(error)) {

175+

return false;

176+

}

177+

throw error;

178+

}

179+

}

180+181+

export function isGatewayProcessAlive(child, killProcess = defaultKillProcess) {

182+

if (process.platform !== "win32" && typeof child.pid === "number") {

183+

try {

184+

killProcess(-child.pid, 0);

185+

return true;

186+

} catch (error) {

187+

if (isProcessAlreadyExitedError(error)) {

188+

return false;

189+

}

190+

throw error;

191+

}

192+

}

193+

return child.exitCode === null && child.signalCode === null;

194+

}

195+196+

function signalGatewayProcessForParentExit(child, signal, killProcess) {

197+

try {

198+

signalGatewayProcess(child, signal, killProcess);

199+

} catch {

200+

// Parent shutdown cleanup is best effort; the original signal should win.

201+

}

202+

}

203+204+

export function installGatewayParentCleanup(

205+

child,

206+

{ killProcess = defaultKillProcess, processLike = process } = {},

207+

) {

208+

const signalHandlers = new Map();

209+

const cleanup = (signal) => {

210+

signalGatewayProcessForParentExit(child, signal, killProcess);

211+

if (process.platform !== "win32") {

212+

signalGatewayProcessForParentExit(child, "SIGKILL", killProcess);

213+

}

214+

};

215+

const exitHandler = () => {

216+

cleanup("SIGTERM");

217+

};

218+

const removeHandlers = () => {

219+

processLike.off?.("exit", exitHandler);

220+

for (const [signal, handler] of signalHandlers) {

221+

processLike.off?.(signal, handler);

222+

}

223+

signalHandlers.clear();

224+

};

225+

processLike.once("exit", exitHandler);

226+

for (const signal of PARENT_TERMINATION_SIGNALS) {

227+

const handler = () => {

228+

cleanup(signal);

229+

removeHandlers();

230+

processLike.kill?.(processLike.pid, signal);

231+

};

232+

signalHandlers.set(signal, handler);

233+

processLike.once(signal, handler);

234+

}

235+

return removeHandlers;

236+

}

237+238+

async function waitForGatewayExit(child, timeoutMs, killProcess = defaultKillProcess) {

239+

const deadline = Date.now() + timeoutMs;

240+

while (Date.now() <= deadline) {

241+

if (!isGatewayProcessAlive(child, killProcess)) {

242+

return true;

243+

}

244+

await sleep(Math.min(25, Math.max(0, deadline - Date.now())));

245+

}

246+

return !isGatewayProcessAlive(child, killProcess);

247+

}

248+249+

export async function stopGateway(child, options = {}) {

250+

if (!isGatewayProcessAlive(child, options.killProcess)) {

148251

return;

149252

}

150-

child.kill("SIGTERM");

151-

const exited = await new Promise((resolve) => {

152-

const timer = setTimeout(() => resolve(false), 1_500);

153-

child.once("exit", () => {

154-

clearTimeout(timer);

155-

resolve(true);

156-

});

157-

});

158-

if (!exited && child.exitCode === null && child.signalCode === null) {

159-

child.kill("SIGKILL");

253+

const killGraceMs = Math.max(0, options.killGraceMs ?? 1_500);

254+

signalGatewayProcess(child, "SIGTERM", options.killProcess);

255+

const exited = await waitForGatewayExit(child, killGraceMs, options.killProcess);

256+

if (!exited) {

257+

signalGatewayProcess(child, "SIGKILL", options.killProcess);

160258

}

161259

}

162260

@@ -171,7 +269,7 @@ async function closeFileHandles(handles) {

171269

export async function startGateway({

172270

configPath,

173271

env = process.env,

174-

openImpl = fs.open,

272+

openImpl = defaultOpen,

175273

port,

176274

repoRoot,

177275

spawnImpl = spawn,

@@ -207,6 +305,7 @@ export async function startGateway({

207305

],

208306

{

209307

cwd: repoRoot,

308+

detached: process.platform !== "win32",

210309

env: {

211310

...env,

212311

HOME: path.join(tempRoot, "home"),

@@ -417,6 +516,7 @@ async function main() {

417516

const stdoutPath = path.join(tempRoot, "gateway.stdout.log");

418517

const stderrPath = path.join(tempRoot, "gateway.stderr.log");

419518

let gatewayChild;

519+

let removeGatewayParentCleanup = () => {};

420520

let status = "fail";

421521

let details = "";

422522

let measurement;

@@ -449,6 +549,7 @@ async function main() {

449549

tempRoot,

450550

token,

451551

});

552+

removeGatewayParentCleanup = installGatewayParentCleanup(gatewayChild);

452553

await waitForGatewayReady({ child: gatewayChild, port, stderrPath });

453554454555

const requireFromOpenClaw = createRequire(path.join(repoRoot, "package.json"));

@@ -534,8 +635,12 @@ async function main() {

534635

} catch (error) {

535636

details = error instanceof Error ? (error.stack ?? error.message) : String(error);

536637

} finally {

537-

if (gatewayChild) {

538-

await stopGateway(gatewayChild).catch(() => {});

638+

try {

639+

if (gatewayChild) {

640+

await stopGateway(gatewayChild).catch(() => {});

641+

}

642+

} finally {

643+

removeGatewayParentCleanup();

539644

}

540645

try {

541646

await cleanupTempRoot(tempRoot);