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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Y
Y Combinator Blog
IT之家
IT之家
博客园 - 聂微东
L
LangChain Blog
爱范儿
爱范儿
H
Help Net Security
GbyAI
GbyAI
F
Fortinet All Blogs
B
Blog
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
D
DataBreaches.Net
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享

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(gateway): bound benchmark teardown waits · openclaw/o...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -173,6 +173,8 @@ const DEFAULT_TIMEOUT_MS = 30_000;

173173

const DEFAULT_POST_READY_DELAY_MS = 250;

174174

const DEFAULT_ENTRY = "dist/entry.js";

175175

const RESTART_INTENT_FILENAME = "gateway-restart-intent.json";

176+

const TEARDOWN_GRACE_MS = 2_000;

177+

const TEARDOWN_KILL_GRACE_MS = 1_000;

176178177179

const BASE_CONFIG = {

178180

browser: { enabled: false },

@@ -879,7 +881,10 @@ function writeRestartIntent(env: NodeJS.ProcessEnv, targetPid: number, reason: s

879881

}

880882

}

881883882-

async function stopChild(child: ChildProcessWithoutNullStreams): Promise<StopChildResult> {

884+

async function stopChild(

885+

child: ChildProcessWithoutNullStreams,

886+

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

887+

): Promise<StopChildResult> {

883888

const currentExit = (): ChildExit | null =>

884889

child.exitCode != null || child.signalCode != null

885890

? { exitCode: child.exitCode, signal: child.signalCode }

@@ -897,22 +902,48 @@ async function stopChild(child: ChildProcessWithoutNullStreams): Promise<StopChi

897902

resolve(observedExit);

898903

});

899904

});

905+

const waitForExit = async (ms: number): Promise<ChildExit | null> =>

906+

await Promise.race([exited, delay(ms).then(() => null)]);

900907901908

await new Promise<void>((resolve) => setImmediate(resolve));

902909

const queuedExit = observedExit ?? currentExit();

903910

if (queuedExit != null) {

904911

return { ...queuedExit, exitedBeforeTeardown: true };

905912

}

906913914+

const teardownGraceMs = options.teardownGraceMs ?? TEARDOWN_GRACE_MS;

915+

const killGraceMs = options.killGraceMs ?? TEARDOWN_KILL_GRACE_MS;

907916

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

908-

const timeout = delay(2000).then(() => {

909-

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

910-

killProcessTree(child, "SIGKILL");

911-

}

912-

return exited;

913-

});

914-

const exit = await Promise.race([exited, timeout]);

915-

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

917+

const gracefulExit = await waitForExit(teardownGraceMs);

918+

if (gracefulExit != null) {

919+

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

920+

}

921+922+

const postGraceExit = currentExit() ?? observedExit;

923+

if (postGraceExit != null) {

924+

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

925+

}

926+

if (!sentTeardownSignal) {

927+

releaseUnsettledChild(child);

928+

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

929+

}

930+931+

killProcessTree(child, "SIGKILL");

932+

const killedExit = await waitForExit(killGraceMs);

933+

const finalExit = killedExit ?? currentExit() ?? observedExit;

934+

if (finalExit != null) {

935+

return { ...finalExit, exitedBeforeTeardown: false };

936+

}

937+938+

releaseUnsettledChild(child);

939+

return { exitCode: null, exitedBeforeTeardown: false, signal: "SIGKILL" };

940+

}

941+942+

function releaseUnsettledChild(child: ChildProcessWithoutNullStreams): void {

943+

child.stdin.destroy();

944+

child.stdout.destroy();

945+

child.stderr.destroy();

946+

child.unref();

916947

}

917948918949

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

@@ -1559,7 +1590,8 @@ async function runGatewaySample(options: {

15591590

const exit = await stopChild(child);

15601591

clearInterval(rssTimer);

15611592

sampleRss();

1562-

await childExitPromise.catch(() => null);

1593+

// stopChild is the bounded teardown wait; the raw exit promise may never settle.

1594+

void childExitPromise.catch(() => null);

15631595

flushOutputLineBuffers(outputBuffers, onLine, performance.now() - sampleStartAt, {

15641596

flushPartial: true,

15651597

});