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

推荐订阅源

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 discovery advertise startup · opencla...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -8,6 +8,20 @@ import {

88

resolveTailnetDnsHint,

99

} from "./server-discovery.js";

101011+

const DEFAULT_DISCOVERY_ADVERTISE_TIMEOUT_MS = 5_000;

12+13+

function resolveDiscoveryAdvertiseTimeoutMs(env: NodeJS.ProcessEnv): number {

14+

const raw = env.OPENCLAW_GATEWAY_DISCOVERY_ADVERTISE_TIMEOUT_MS?.trim();

15+

if (!raw) {

16+

return DEFAULT_DISCOVERY_ADVERTISE_TIMEOUT_MS;

17+

}

18+

const parsed = Number.parseInt(raw, 10);

19+

if (!Number.isFinite(parsed) || parsed <= 0) {

20+

return DEFAULT_DISCOVERY_ADVERTISE_TIMEOUT_MS;

21+

}

22+

return parsed;

23+

}

24+1125

export async function startGatewayDiscovery(params: {

1226

machineDisplayName: string;

1327

port: number;

@@ -32,6 +46,7 @@ export async function startGatewayDiscovery(params: {

3246

const mdnsMinimal = mdnsMode !== "full";

3347

const tailscaleEnabled = params.tailscaleMode !== "off";

3448

const needsTailnetDns = localDiscoveryEnabled || params.wideAreaDiscoveryEnabled;

49+

const advertiseTimeoutMs = resolveDiscoveryAdvertiseTimeoutMs(process.env);

3550

const tailnetDns = needsTailnetDns

3651

? await resolveTailnetDnsHint({ enabled: tailscaleEnabled })

3752

: undefined;

@@ -42,9 +57,14 @@ export async function startGatewayDiscovery(params: {

42574358

if (localDiscoveryEnabled) {

4459

const stops: Array<() => void | Promise<void>> = [];

60+

let attemptedLocalDiscovery = false;

61+

let stoppedLocalDiscovery = false;

4562

for (const entry of params.gatewayDiscoveryServices ?? []) {

63+

attemptedLocalDiscovery = true;

4664

try {

47-

const started = await entry.service.advertise({

65+

let timer: ReturnType<typeof setTimeout> | undefined;

66+

let timedOut = false;

67+

const context = {

4868

machineDisplayName: params.machineDisplayName,

4969

gatewayPort: params.port,

5070

gatewayTlsEnabled: params.gatewayTls?.enabled ?? false,

@@ -54,7 +74,50 @@ export async function startGatewayDiscovery(params: {

5474

tailnetDns,

5575

cliPath,

5676

minimal: mdnsMinimal,

77+

};

78+

const advertisePromise = Promise.resolve()

79+

.then(() => entry.service.advertise(context))

80+

.then(

81+

async (started) => {

82+

if (timedOut) {

83+

if (started?.stop) {

84+

if (stoppedLocalDiscovery) {

85+

try {

86+

await started.stop();

87+

} catch (err) {

88+

params.logDiscovery.warn(`gateway discovery stop failed: ${String(err)}`);

89+

}

90+

} else {

91+

stops.push(started.stop);

92+

}

93+

}

94+

params.logDiscovery.warn(

95+

`gateway discovery service completed after startup timeout (${entry.service.id}, plugin=${entry.pluginId})`,

96+

);

97+

}

98+

return started;

99+

},

100+

(err) => {

101+

params.logDiscovery.warn(

102+

`gateway discovery service failed${timedOut ? " after startup timeout" : ""} (${entry.service.id}, plugin=${entry.pluginId}): ${String(err)}`,

103+

);

104+

return undefined;

105+

},

106+

);

107+

const timeoutPromise = new Promise<undefined>((resolve) => {

108+

timer = setTimeout(() => {

109+

timedOut = true;

110+

params.logDiscovery.warn(

111+

`gateway discovery service timed out after ${advertiseTimeoutMs}ms (${entry.service.id}, plugin=${entry.pluginId}); continuing startup`,

112+

);

113+

resolve(undefined);

114+

}, advertiseTimeoutMs);

115+

timer.unref?.();

57116

});

117+

const started = await Promise.race([advertisePromise, timeoutPromise]);

118+

if (timer) {

119+

clearTimeout(timer);

120+

}

58121

if (started?.stop) {

59122

stops.push(started.stop);

60123

}

@@ -64,8 +127,9 @@ export async function startGatewayDiscovery(params: {

64127

);

65128

}

66129

}

67-

if (stops.length > 0) {

130+

if (attemptedLocalDiscovery) {

68131

bonjourStop = async () => {

132+

stoppedLocalDiscovery = true;

69133

for (const stop of stops.toReversed()) {

70134

try {

71135

await stop();