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

推荐订阅源

小众软件
小众软件
博客园_首页
博客园 - 聂微东
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
D
Docker
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Jina AI
Jina AI
博客园 - Franky
D
DataBreaches.Net

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(ci): clean gateway watch temp home · openclaw/opencla...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -404,7 +404,7 @@ async function allocateLoopbackPort() {

404404

const { port } = address;

405405

server.close((closeErr) => {

406406

if (closeErr) {

407-

reject(closeErr);

407+

reject(closeErr instanceof Error ? closeErr : new Error(String(closeErr)));

408408

return;

409409

}

410410

resolve(port);

@@ -484,100 +484,108 @@ function parseTimingFile(timeFilePath) {

484484

};

485485

}

486486487-

async function runTimedWatch(options, outputDir) {

487+

export async function runTimedWatch(options, outputDir, deps = {}) {

488+

const allocatePort = deps.allocateLoopbackPort ?? allocateLoopbackPort;

489+

const parseTiming = deps.parseTimingFile ?? parseTimingFile;

490+

const readCpuMs = deps.readProcessTreeCpuMs ?? readProcessTreeCpuMs;

491+

const sleepMs = deps.sleep ?? sleep;

492+

const spawnCommand = deps.spawn ?? spawn;

493+

const stopChild = deps.stopTimedWatchChild ?? stopTimedWatchChild;

494+

const waitReady = deps.waitForGatewayReady ?? waitForGatewayReady;

488495

const pidFilePath = path.join(outputDir, "watch.pid");

489496

const timeFilePath = path.join(outputDir, "watch.time.log");

490497

const isolatedHomeDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-gateway-watch-"));

491498

fs.writeFileSync(path.join(outputDir, "watch.home.txt"), `${isolatedHomeDir}\n`, "utf8");

492-

const stdoutPath = path.join(outputDir, "watch.stdout.log");

493-

const stderrPath = path.join(outputDir, "watch.stderr.log");

494-

for (const stalePath of [pidFilePath, timeFilePath, stdoutPath, stderrPath]) {

495-

removePathIfExists(stalePath);

496-

}

497-

const port = await allocateLoopbackPort();

498-

fs.writeFileSync(path.join(outputDir, "watch.port.txt"), `${String(port)}\n`, "utf8");

499-

const { command, args, env } = buildTimedWatchCommand(

500-

pidFilePath,

501-

timeFilePath,

502-

isolatedHomeDir,

503-

port,

504-

);

505-

const child = spawn(command, args, {

506-

cwd: process.cwd(),

507-

env: { ...process.env, ...env },

508-

stdio: ["ignore", "pipe", "pipe"],

509-

});

499+

try {

500+

const stdoutPath = path.join(outputDir, "watch.stdout.log");

501+

const stderrPath = path.join(outputDir, "watch.stderr.log");

502+

for (const stalePath of [pidFilePath, timeFilePath, stdoutPath, stderrPath]) {

503+

removePathIfExists(stalePath);

504+

}

505+

const port = await allocatePort();

506+

fs.writeFileSync(path.join(outputDir, "watch.port.txt"), `${String(port)}\n`, "utf8");

507+

const { command, args, env } = buildTimedWatchCommand(

508+

pidFilePath,

509+

timeFilePath,

510+

isolatedHomeDir,

511+

port,

512+

);

513+

const child = spawnCommand(command, args, {

514+

cwd: process.cwd(),

515+

env: { ...process.env, ...env },

516+

stdio: ["ignore", "pipe", "pipe"],

517+

});

510518511-

let stdout = "";

512-

let stderr = "";

513-

let stdoutTruncated = false;

514-

let stderrTruncated = false;

515-

let buildDetection = { buffer: "", triggered: false, reason: null };

516-

child.stdout?.on("data", (chunk) => {

517-

const next = appendBoundedWatchLog(stdout, chunk);

518-

stdout = next.text;

519-

stdoutTruncated ||= next.truncated;

520-

buildDetection = updateWatchBuildDetection(buildDetection, chunk);

521-

});

522-

child.stderr?.on("data", (chunk) => {

523-

const next = appendBoundedWatchLog(stderr, chunk);

524-

stderr = next.text;

525-

stderrTruncated ||= next.truncated;

526-

buildDetection = updateWatchBuildDetection(buildDetection, chunk);

527-

});

519+

let stdout = "";

520+

let stderr = "";

521+

let stdoutTruncated = false;

522+

let stderrTruncated = false;

523+

let buildDetection = { buffer: "", triggered: false, reason: null };

524+

child.stdout?.on("data", (chunk) => {

525+

const next = appendBoundedWatchLog(stdout, chunk);

526+

stdout = next.text;

527+

stdoutTruncated ||= next.truncated;

528+

buildDetection = updateWatchBuildDetection(buildDetection, chunk);

529+

});

530+

child.stderr?.on("data", (chunk) => {

531+

const next = appendBoundedWatchLog(stderr, chunk);

532+

stderr = next.text;

533+

stderrTruncated ||= next.truncated;

534+

buildDetection = updateWatchBuildDetection(buildDetection, chunk);

535+

});

528536529-

let spawnError = null;

530-

const spawnErrorExit = new Promise((resolve) => {

531-

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

532-

spawnError = error;

533-

resolve({ code: null, signal: null, error: error.message });

537+

let spawnError = null;

538+

const spawnErrorExit = new Promise((resolve) => {

539+

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

540+

spawnError = error;

541+

resolve({ code: null, signal: null, error: error.message });

542+

});

534543

});

535-

});

536544537-

let watchPid = null;

538-

for (let attempt = 0; attempt < 50; attempt += 1) {

539-

if (fs.existsSync(pidFilePath)) {

540-

watchPid = Number(fs.readFileSync(pidFilePath, "utf8").trim());

541-

break;

545+

let watchPid = null;

546+

for (let attempt = 0; attempt < 50; attempt += 1) {

547+

if (fs.existsSync(pidFilePath)) {

548+

watchPid = Number(fs.readFileSync(pidFilePath, "utf8").trim());

549+

break;

550+

}

551+

await sleepMs(100);

542552

}

543-

await sleep(100);

544-

}

545-546-

const readyBeforeWindow = await waitForGatewayReady(

547-

() => `${stdout}\n${stderr}`,

548-

options.readyTimeoutMs,

549-

);

550-

if (readyBeforeWindow && options.readySettleMs > 0) {

551-

await sleep(options.readySettleMs);

552-

}

553-

const idleCpuStartMs = watchPid ? readProcessTreeCpuMs(watchPid) : null;

554-

await sleep(options.windowMs);

555-

const idleCpuEndMs = watchPid ? readProcessTreeCpuMs(watchPid) : null;

556553557-

const exit = await Promise.race([stopTimedWatchChild(child, watchPid, options), spawnErrorExit]);

558-

fs.writeFileSync(stdoutPath, formatCapturedWatchLog(stdout, stdoutTruncated), "utf8");

559-

fs.writeFileSync(stderrPath, formatCapturedWatchLog(stderr, stderrTruncated), "utf8");

560-

const timingFileMissing = !fs.existsSync(timeFilePath);

561-

const timing = timingFileMissing

562-

? { userSeconds: Number.NaN, sysSeconds: Number.NaN, elapsedSeconds: Number.NaN }

563-

: parseTimingFile(timeFilePath);

554+

const readyBeforeWindow = await waitReady(() => `${stdout}\n${stderr}`, options.readyTimeoutMs);

555+

if (readyBeforeWindow && options.readySettleMs > 0) {

556+

await sleepMs(options.readySettleMs);

557+

}

558+

const idleCpuStartMs = watchPid ? readCpuMs(watchPid) : null;

559+

await sleepMs(options.windowMs);

560+

const idleCpuEndMs = watchPid ? readCpuMs(watchPid) : null;

561+562+

const exit = await Promise.race([stopChild(child, watchPid, options), spawnErrorExit]);

563+

fs.writeFileSync(stdoutPath, formatCapturedWatchLog(stdout, stdoutTruncated), "utf8");

564+

fs.writeFileSync(stderrPath, formatCapturedWatchLog(stderr, stderrTruncated), "utf8");

565+

const timingFileMissing = !fs.existsSync(timeFilePath);

566+

const timing = timingFileMissing

567+

? { userSeconds: Number.NaN, sysSeconds: Number.NaN, elapsedSeconds: Number.NaN }

568+

: parseTiming(timeFilePath);

564569565-

return {

566-

exit,

567-

spawnError: spawnError ? spawnError.message : null,

568-

timingFileMissing,

569-

timing,

570-

readyBeforeWindow,

571-

idleCpuMs:

572-

idleCpuStartMs == null || idleCpuEndMs == null

573-

? null

574-

: Math.max(0, idleCpuEndMs - idleCpuStartMs),

575-

stdoutPath,

576-

stderrPath,

577-

timeFilePath,

578-

watchTriggeredBuild: buildDetection.triggered,

579-

watchBuildReason: buildDetection.reason,

580-

};

570+

return {

571+

exit,

572+

spawnError: spawnError ? spawnError.message : null,

573+

timingFileMissing,

574+

timing,

575+

readyBeforeWindow,

576+

idleCpuMs:

577+

idleCpuStartMs == null || idleCpuEndMs == null

578+

? null

579+

: Math.max(0, idleCpuEndMs - idleCpuStartMs),

580+

stdoutPath,

581+

stderrPath,

582+

timeFilePath,

583+

watchTriggeredBuild: buildDetection.triggered,

584+

watchBuildReason: buildDetection.reason,

585+

};

586+

} finally {

587+

fs.rmSync(isolatedHomeDir, { force: true, recursive: true });

588+

}

581589

}

582590583591

export async function stopTimedWatchChild(child, watchPid, options, deps = {}) {