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

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

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
refactor(gateway): rename startup sidecar deferral option...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -583,7 +583,6 @@ describeLive("gateway live (ACP bind)", () => {

583583

bind: "loopback",

584584

auth: { mode: "token", token },

585585

controlUiEnabled: false,

586-

awaitStartupSidecars: true,

587586

});

588587

logLiveStep("gateway startup returned");

589588

await waitForGatewayPort({ host: "127.0.0.1", port, timeoutMs: CONNECT_TIMEOUT_MS });

Original file line numberDiff line numberDiff line change

@@ -365,7 +365,6 @@ describeLive("gateway live (native Codex conversation binding)", () => {

365365

bind: "loopback",

366366

auth: { mode: "token", token },

367367

controlUiEnabled: false,

368-

awaitStartupSidecars: true,

369368

});

370369

const client = await connectTestGatewayClient({

371370

url: `ws://127.0.0.1:${port}`,

Original file line numberDiff line numberDiff line change

@@ -183,6 +183,34 @@ describe("startGatewayPostAttachRuntime", () => {

183183

});

184184

});

185185
186+

it("waits for sidecars by default before returning", async () => {

187+

let resumeSidecars!: () => void;

188+

const sidecarsReady = new Promise<{ pluginServices: null }>((resolve) => {

189+

resumeSidecars = () => resolve({ pluginServices: null });

190+

});

191+

const startGatewaySidecars = vi.fn(async () => {

192+

return await sidecarsReady;

193+

});

194+

let returned = false;

195+
196+

const runtimePromise = startGatewayPostAttachRuntime(

197+

createPostAttachParams(),

198+

createPostAttachRuntimeDeps({ startGatewaySidecars }),

199+

).then(() => {

200+

returned = true;

201+

});

202+
203+

await vi.waitFor(() => {

204+

expect(startGatewaySidecars).toHaveBeenCalledTimes(1);

205+

});

206+

await Promise.resolve();

207+

expect(returned).toBe(false);

208+
209+

resumeSidecars();

210+

await runtimePromise;

211+

expect(returned).toBe(true);

212+

});

213+
186214

it("keeps startup-gated methods unavailable while sidecars are still resuming", async () => {

187215

let resumeSidecars!: () => void;

188216

const sidecarsReady = new Promise<{ pluginServices: null }>((resolve) => {

@@ -197,7 +225,7 @@ describe("startGatewayPostAttachRuntime", () => {

197225

{

198226

...createPostAttachParams(),

199227

unavailableGatewayMethods,

200-

awaitSidecars: false,

228+

deferSidecars: true,

201229

},

202230

createPostAttachRuntimeDeps({ startGatewaySidecars }),

203231

);

Original file line numberDiff line numberDiff line change

@@ -420,7 +420,7 @@ export async function startGatewayPostAttachRuntime(

420420

onPluginServices?: (pluginServices: PluginServicesHandle | null) => void;

421421

onSidecarsReady?: () => void;

422422

startupTrace?: GatewayStartupTrace;

423-

awaitSidecars?: boolean;

423+

deferSidecars?: boolean;

424424

},

425425

runtimeDeps: GatewayPostAttachRuntimeDeps = defaultGatewayPostAttachRuntimeDeps,

426426

) {

@@ -520,7 +520,7 @@ export async function startGatewayPostAttachRuntime(

520520

params.log.warn(`gateway sidecars failed to start: ${String(err)}`);

521521

});

522522
523-

if (params.awaitSidecars !== false) {

523+

if (params.deferSidecars !== true) {

524524

const [stopGatewayUpdateCheck, tailscaleCleanup, sidecarsResult] = await Promise.all([

525525

stopGatewayUpdateCheckPromise,

526526

tailscaleCleanupPromise,

Original file line numberDiff line numberDiff line change

@@ -230,11 +230,10 @@ export type GatewayServerOptions = {

230230

prompter: import("../wizard/prompts.js").WizardPrompter,

231231

) => Promise<void>;

232232

/**

233-

* Whether to wait for post-listen sidecars (channels, plugin services) to finish

234-

* starting before marking the gateway as ready. Defaults to true; pass false to

235-

* let sidecars start in the background.

233+

* Let post-listen sidecars (channels, plugin services) finish in the background.

234+

* Defaults to false so gateway startup waits until sidecars are ready.

236235

*/

237-

awaitStartupSidecars?: boolean;

236+

deferStartupSidecars?: boolean;

238237

/**

239238

* Optional startup timestamp used for concise readiness logging.

240239

*/

@@ -844,7 +843,7 @@ export async function startGatewayServer(

844843

startupSidecarsReady = true;

845844

},

846845

startupTrace,

847-

awaitSidecars: opts.awaitStartupSidecars,

846+

deferSidecars: opts.deferStartupSidecars === true,

848847

}),

849848

));

850849

startupTrace.mark("ready");