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

推荐订阅源

C
Check Point Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
腾讯CDC
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
Vercel News
Vercel News
P
Proofpoint News Feed
雷峰网
雷峰网
博客园_首页
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
V
V2EX
F
Fortinet All Blogs
酷 壳 – CoolShell
酷 壳 – CoolShell
MyScale Blog
MyScale 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(e2e): wait for kitchen rpc process groups · openclaw/...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main

@@ -31,6 +31,7 @@ const DEFAULT_MAX_COMMAND_RSS_MIB = 8192;

3131

const DEFAULT_OUTPUT_CAPTURE_CHARS = 1024 * 1024;

3232

const GATEWAY_TEARDOWN_GRACE_MS = 10000;

3333

const GATEWAY_TEARDOWN_KILL_GRACE_MS = 2000;

34+

const COMMAND_PROCESS_TREE_EXIT_POLL_MS = 50;

3435

const LOG_SCAN_CHUNK_BYTES = 64 * 1024;

3536

const LOG_SCAN_MAX_LINE_CHARS = 16 * 1024;

3637

const LOG_TAIL_BYTES = 256 * 1024;

@@ -380,49 +381,94 @@ export function runCommand(command, args, options = {}) {

380381

});

381382

child.on("close", (status, signal) => {

382383

clearTimeout(timer);

383-

clearTimeout(forceKillTimer);

384-

void stopResourceSampling().then((resourceSampleFailure) => {

385-

if (!timedOut && status === 0) {

386-

if (resourceSampleFailure) {

387-

reject(resourceSampleFailure);

384+

const finish = () => {

385+

clearTimeout(forceKillTimer);

386+

void stopResourceSampling().then((resourceSampleFailure) => {

387+

if (!timedOut && status === 0) {

388+

if (resourceSampleFailure) {

389+

reject(resourceSampleFailure);

390+

return;

391+

}

392+

resolve({

393+

stdout: stdout.text,

394+

stderr: stderr.text,

395+

stdoutTruncatedChars: stdout.truncatedChars,

396+

stderrTruncatedChars: stderr.truncatedChars,

397+

});

388398

return;

389399

}

390-

resolve({

391-

stdout: stdout.text,

392-

stderr: stderr.text,

393-

stdoutTruncatedChars: stdout.truncatedChars,

394-

stderrTruncatedChars: stderr.truncatedChars,

395-

});

396-

return;

397-

}

398-

const detail = [

399-

formatCapturedOutput("stdout", stdout),

400-

formatCapturedOutput("stderr", stderr),

401-

]

402-

.filter(Boolean)

403-

.join("\n")

404-

.trim();

405-

const failure = timedOut

406-

? `timed out after ${timeoutMs}ms`

407-

: `failed with ${signal || status}`;

408-

reject(

409-

Object.assign(

410-

new Error(

411-

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

400+

const detail = [

401+

formatCapturedOutput("stdout", stdout),

402+

formatCapturedOutput("stderr", stderr),

403+

]

404+

.filter(Boolean)

405+

.join("\n")

406+

.trim();

407+

const failure = timedOut

408+

? `timed out after ${timeoutMs}ms`

409+

: `failed with ${signal || status}`;

410+

reject(

411+

Object.assign(

412+

new Error(

413+

`${command} ${args.join(" ")} ${failure}${detail ? `\n${tailText(detail)}` : ""}`,

414+

),

415+

{

416+

signal,

417+

status,

418+

stderr: stderr.text,

419+

stdout: stdout.text,

420+

},

412421

),

413-

{

414-

signal,

415-

status,

416-

stderr: stderr.text,

417-

stdout: stdout.text,

418-

},

419-

),

420-

);

421-

});

422+

);

423+

});

424+

};

425+426+

if (timedOut) {

427+

void finishTimedOutCommandProcessTree(child, timeoutKillGraceMs).then(finish, finish);

428+

return;

429+

}

430+431+

finish();

422432

});

423433

});

424434

}

425435436+

async function finishTimedOutCommandProcessTree(child, timeoutKillGraceMs) {

437+

if (!commandProcessTreeIsAlive(child)) {

438+

return;

439+

}

440+

signalProcessGroup(child, "SIGKILL");

441+

await waitForCommandProcessTreeExit(child, timeoutKillGraceMs);

442+

}

443+444+

async function waitForCommandProcessTreeExit(child, timeoutMs) {

445+

const deadlineAt = Date.now() + timeoutMs;

446+

while (Date.now() < deadlineAt) {

447+

if (!commandProcessTreeIsAlive(child)) {

448+

return true;

449+

}

450+

await new Promise((resolvePoll) => {

451+

setTimeout(resolvePoll, COMMAND_PROCESS_TREE_EXIT_POLL_MS);

452+

});

453+

}

454+

return !commandProcessTreeIsAlive(child);

455+

}

456+457+

function commandProcessTreeIsAlive(child) {

458+

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

459+

return !hasChildExited(child);

460+

}

461+

try {

462+

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

463+

return true;

464+

} catch (error) {

465+

if (error?.code === "EPERM") {

466+

return true;

467+

}

468+

return false;

469+

}

470+

}

471+426472

function signalProcessGroup(child, signal) {

427473

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

428474

try {