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

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

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
test(matrix): add stale sync replay dedupe scenario · ope...
gumadeiras · 2026-04-20 · via Recent Commits to openclaw:main

@@ -42,6 +42,14 @@ import type { QaTransportAdapter } from "./qa-transport.js";

42424343

export type { QaCliBackendAuthMode } from "./providers/env.js";

4444

const QA_GATEWAY_CHILD_STARTUP_MAX_ATTEMPTS = 5;

45+46+

export type QaGatewayChildStateMutationContext = {

47+

configPath: string;

48+

runtimeEnv: NodeJS.ProcessEnv;

49+

stateDir: string;

50+

tempRoot: string;

51+

};

52+4553

async function getFreePort() {

4654

return await new Promise<number>((resolve, reject) => {

4755

const server = net.createServer();

@@ -694,10 +702,95 @@ export async function startQaGatewayChild(params: {

694702

if (!child || !cfg || !baseUrl || !wsUrl || !rpcClient || !env) {

695703

throw new Error("qa gateway child failed to start");

696704

}

697-

const runningChild = child;

698-

const runningRpcClient = rpcClient;

705+

let activeChild = child;

706+

let activeRpcClient = rpcClient;

699707

const runningEnv = env;

700708709+

const spawnReplacementGatewayChild = async () => {

710+

const nextChild = spawn(

711+

nodeExecPath,

712+

[

713+

distEntryPath,

714+

"gateway",

715+

"run",

716+

"--port",

717+

String(gatewayPort),

718+

"--bind",

719+

"loopback",

720+

"--allow-unconfigured",

721+

],

722+

{

723+

cwd: runtimeCwd,

724+

env: runningEnv,

725+

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

726+

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

727+

},

728+

);

729+

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

730+

const buffer = Buffer.from(chunk);

731+

stdout.push(buffer);

732+

stdoutLog.write(buffer);

733+

});

734+

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

735+

const buffer = Buffer.from(chunk);

736+

stderr.push(buffer);

737+

stderrLog.write(buffer);

738+

});

739+740+

try {

741+

await waitForGatewayReady({

742+

baseUrl,

743+

logs,

744+

child: nextChild,

745+

timeoutMs: 120_000,

746+

});

747+

const nextRpcClient = await startQaGatewayRpcClient({

748+

wsUrl,

749+

token: gatewayToken,

750+

logs,

751+

});

752+

try {

753+

let rpcReady = false;

754+

let lastRpcStartupError: unknown = null;

755+

for (let rpcAttempt = 1; rpcAttempt <= 4; rpcAttempt += 1) {

756+

try {

757+

await nextRpcClient.request("config.get", {}, { timeoutMs: 10_000 });

758+

rpcReady = true;

759+

break;

760+

} catch (error) {

761+

lastRpcStartupError = error;

762+

if (rpcAttempt >= 4 || !isRetryableRpcStartupError(error)) {

763+

throw error;

764+

}

765+

await sleep(500 * rpcAttempt);

766+

await waitForGatewayReady({

767+

baseUrl,

768+

logs,

769+

child: nextChild,

770+

timeoutMs: 15_000,

771+

});

772+

}

773+

}

774+

if (!rpcReady) {

775+

throw lastRpcStartupError ?? new Error("qa gateway rpc client failed to start");

776+

}

777+

} catch (error) {

778+

await nextRpcClient.stop().catch(() => {});

779+

throw error;

780+

}

781+

return {

782+

child: nextChild,

783+

rpcClient: nextRpcClient,

784+

};

785+

} catch (error) {

786+

await stopQaGatewayChildProcessTree(nextChild, {

787+

gracefulTimeoutMs: 1_500,

788+

forceTimeoutMs: 1_500,

789+

});

790+

throw error;

791+

}

792+

};

793+701794

return {

702795

cfg,

703796

baseUrl,

@@ -710,10 +803,27 @@ export async function startQaGatewayChild(params: {

710803

runtimeEnv: runningEnv,

711804

logs,

712805

async restart(signal: NodeJS.Signals = "SIGUSR1") {

713-

if (!runningChild.pid) {

806+

if (!activeChild.pid) {

714807

throw new Error("qa gateway child has no pid");

715808

}

716-

process.kill(runningChild.pid, signal);

809+

process.kill(activeChild.pid, signal);

810+

},

811+

async restartAfterStateMutation(

812+

mutateState: (context: QaGatewayChildStateMutationContext) => Promise<void>,

813+

) {

814+

await activeRpcClient.stop().catch(() => {});

815+

await stopQaGatewayChildProcessTree(activeChild);

816+

await mutateState({

817+

configPath,

818+

runtimeEnv: runningEnv,

819+

stateDir,

820+

tempRoot,

821+

});

822+

const restarted = await spawnReplacementGatewayChild();

823+

activeChild = restarted.child;

824+

activeRpcClient = restarted.rpcClient;

825+

child = activeChild;

826+

rpcClient = activeRpcClient;

717827

},

718828

async call(

719829

method: string,

@@ -724,7 +834,7 @@ export async function startQaGatewayChild(params: {

724834

let lastDetails = "";

725835

for (let attempt = 1; attempt <= 3; attempt += 1) {

726836

try {

727-

return await runningRpcClient.request(method, rpcParams, {

837+

return await activeRpcClient.request(method, rpcParams, {

728838

...opts,

729839

timeoutMs,

730840

});

@@ -737,16 +847,16 @@ export async function startQaGatewayChild(params: {

737847

await waitForGatewayReady({

738848

baseUrl,

739849

logs,

740-

child: runningChild,

850+

child: activeChild,

741851

timeoutMs: Math.max(10_000, timeoutMs),

742852

});

743853

}

744854

}

745855

throw new Error(`${lastDetails}${formatQaGatewayLogsForError(logs())}`);

746856

},

747857

async stop(opts?: { keepTemp?: boolean; preserveToDir?: string }) {

748-

await runningRpcClient.stop().catch(() => {});

749-

await stopQaGatewayChildProcessTree(runningChild);

858+

await activeRpcClient.stop().catch(() => {});

859+

await stopQaGatewayChildProcessTree(activeChild);

750860

await closeWriteStream(stdoutLog);

751861

await closeWriteStream(stderrLog);

752862

if (opts?.preserveToDir && !(opts?.keepTemp ?? keepTemp)) {