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

推荐订阅源

罗磊的独立博客
Martin Fowler
Martin Fowler
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
C
Check Point Blog
H
Help Net Security
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
P
Proofpoint News Feed
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
S
SegmentFault 最新的问题
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园_首页
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏

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(bench): kill gateway child trees on windows · opencla...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
11

// Gateway Bench Child script supports OpenClaw repository automation.

2-

import type { ChildProcessWithoutNullStreams } from "node:child_process";

2+

import { spawnSync, type ChildProcessWithoutNullStreams } from "node:child_process";

3344

const TEARDOWN_GRACE_MS = 2_000;

55

const TEARDOWN_KILL_GRACE_MS = 1_000;

@@ -14,6 +14,13 @@ export type StopChildResult = ChildExit & {

1414

exitedBeforeTeardown: boolean;

1515

};

161617+

export type StopChildOptions = {

18+

killGraceMs?: number;

19+

platform?: NodeJS.Platform;

20+

runTaskkill?: typeof spawnSync;

21+

teardownGraceMs?: number;

22+

};

23+1724

export function delay(ms: number): Promise<void> {

1825

return new Promise((resolve) => {

1926

setTimeout(resolve, ms);

@@ -22,10 +29,14 @@ export function delay(ms: number): Promise<void> {

22292330

export async function stopChild(

2431

child: ChildProcessWithoutNullStreams,

25-

options: { killGraceMs?: number; teardownGraceMs?: number } = {},

32+

options: StopChildOptions = {},

2633

): Promise<StopChildResult> {

2734

const teardownGraceMs = options.teardownGraceMs ?? TEARDOWN_GRACE_MS;

2835

const killGraceMs = options.killGraceMs ?? TEARDOWN_KILL_GRACE_MS;

36+

const processTreeOptions = {

37+

platform: options.platform ?? process.platform,

38+

runTaskkill: options.runTaskkill ?? spawnSync,

39+

};

2940

let observedExit: ChildExit | null = null;

3041

const directExit = (): ChildExit | null =>

3142

observedExit ??

@@ -34,34 +45,34 @@ export async function stopChild(

3445

: null);

3546

const currentExit = (): ChildExit | null => {

3647

const exit = directExit();

37-

if (exit == null || isProcessTreeAlive(child)) {

48+

if (exit == null || isProcessTreeAlive(child, processTreeOptions)) {

3849

return null;

3950

}

4051

return exit;

4152

};

4253

const waitForProcessTreeExit = async (ms: number): Promise<boolean> => {

4354

const deadlineAt = Date.now() + ms;

4455

while (Date.now() < deadlineAt) {

45-

if (!isProcessTreeAlive(child)) {

56+

if (!isProcessTreeAlive(child, processTreeOptions)) {

4657

return true;

4758

}

4859

await delay(Math.min(EXIT_POLL_MS, deadlineAt - Date.now()));

4960

}

50-

return !isProcessTreeAlive(child);

61+

return !isProcessTreeAlive(child, processTreeOptions);

5162

};

5263

const cleanupExitedProcessTree = async (

5364

exit: ChildExit,

5465

exitedBeforeTeardown: boolean,

5566

): Promise<StopChildResult> => {

56-

if (!isProcessTreeAlive(child)) {

67+

if (!isProcessTreeAlive(child, processTreeOptions)) {

5768

return { ...exit, exitedBeforeTeardown };

5869

}

59-

const sentTeardownSignal = killProcessTree(child, "SIGTERM");

70+

const sentTeardownSignal = killProcessTree(child, "SIGTERM", processTreeOptions);

6071

if (sentTeardownSignal) {

6172

await waitForProcessTreeExit(teardownGraceMs);

6273

}

63-

if (sentTeardownSignal && isProcessTreeAlive(child)) {

64-

killProcessTree(child, "SIGKILL");

74+

if (sentTeardownSignal && isProcessTreeAlive(child, processTreeOptions)) {

75+

killProcessTree(child, "SIGKILL", processTreeOptions);

6576

await waitForProcessTreeExit(killGraceMs);

6677

}

6778

if (!sentTeardownSignal) {

@@ -106,7 +117,7 @@ export async function stopChild(

106117

return await cleanupExitedProcessTree(queuedExit, true);

107118

}

108119109-

const sentTeardownSignal = killProcessTree(child, "SIGTERM");

120+

const sentTeardownSignal = killProcessTree(child, "SIGTERM", processTreeOptions);

110121

const gracefulExit = await waitForExit(teardownGraceMs);

111122

if (gracefulExit != null) {

112123

return { ...gracefulExit, exitedBeforeTeardown: !sentTeardownSignal };

@@ -121,7 +132,7 @@ export async function stopChild(

121132

return { exitCode: null, exitedBeforeTeardown: true, signal: null };

122133

}

123134124-

killProcessTree(child, "SIGKILL");

135+

killProcessTree(child, "SIGKILL", processTreeOptions);

125136

const killedExit = await waitForExit(killGraceMs);

126137

const finalExit = killedExit ?? currentExit();

127138

if (finalExit != null) {

@@ -139,8 +150,11 @@ function releaseUnsettledChild(child: ChildProcessWithoutNullStreams): void {

139150

child.unref();

140151

}

141152142-

function isProcessTreeAlive(child: ChildProcessWithoutNullStreams): boolean {

143-

if (process.platform === "win32" || child.pid === undefined) {

153+

function isProcessTreeAlive(

154+

child: ChildProcessWithoutNullStreams,

155+

{ platform = process.platform }: Pick<StopChildOptions, "platform"> = {},

156+

): boolean {

157+

if (platform === "win32" || child.pid === undefined) {

144158

return false;

145159

}

146160

try {

@@ -156,14 +170,28 @@ function isProcessStillExistsError(error: unknown): boolean {

156170

return code === "EPERM";

157171

}

158172159-

function killProcessTree(child: ChildProcessWithoutNullStreams, signal: NodeJS.Signals): boolean {

160-

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

173+

function killProcessTree(

174+

child: ChildProcessWithoutNullStreams,

175+

signal: NodeJS.Signals,

176+

{ platform = process.platform, runTaskkill = spawnSync }: StopChildOptions = {},

177+

): boolean {

178+

if (platform !== "win32" && child.pid !== undefined) {

161179

try {

162180

process.kill(-child.pid, signal);

163181

return true;

164182

} catch {

165183

// Fall back to the direct child below.

166184

}

167185

}

186+

if (platform === "win32" && child.pid !== undefined) {

187+

const args = ["/PID", String(child.pid), "/T"];

188+

if (signal === "SIGKILL") {

189+

args.push("/F");

190+

}

191+

const result = runTaskkill("taskkill", args, { stdio: "ignore" });

192+

if (!result.error && result.status === 0) {

193+

return true;

194+

}

195+

}

168196

return child.kill(signal);

169197

}