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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
S
SegmentFault 最新的问题
博客园 - Franky
博客园_首页
T
Tailwind CSS Blog
雷峰网
雷峰网
罗磊的独立博客

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(discord): tune gateway intents and metadata timeout ·...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -21,7 +21,10 @@ import { DISCORD_GATEWAY_TRANSPORT_ACTIVITY_EVENT } from "./gateway-handle.js";

2121

const DISCORD_GATEWAY_BOT_URL = "https://discord.com/api/v10/gateway/bot";

2222

const DISCORD_API_HOST = "discord.com";

2323

const DEFAULT_DISCORD_GATEWAY_URL = "wss://gateway.discord.gg/";

24-

const DISCORD_GATEWAY_INFO_TIMEOUT_MS = 10_000;

24+

const DEFAULT_DISCORD_GATEWAY_INFO_TIMEOUT_MS = 30_000;

25+

const MAX_DISCORD_GATEWAY_INFO_TIMEOUT_MS = 120_000;

26+

const DISCORD_GATEWAY_INFO_TIMEOUT_ENV = "OPENCLAW_DISCORD_GATEWAY_INFO_TIMEOUT_MS";

27+

const DISCORD_GATEWAY_METADATA_FALLBACK_LOG_INTERVAL_MS = 60_000;

25282629

type DiscordGatewayMetadataResponse = Pick<Response, "ok" | "status" | "text">;

2730

type DiscordGatewayFetchInit = Record<string, unknown> & {

@@ -35,6 +38,7 @@ type DiscordGatewayFetch = (

3538

type DiscordGatewayMetadataError = Error & { transient?: boolean };

3639

type DiscordGatewayWebSocketCtor = new (url: string, options?: { agent?: unknown }) => ws.WebSocket;

3740

const registrationPromises = new WeakMap<carbonGateway.GatewayPlugin, Promise<void>>();

41+

const gatewayMetadataFallbackLogLastAt = new WeakMap<RuntimeEnv, number>();

3842

type CarbonGatewayRegistrationState = {

3943

client?: Parameters<carbonGateway.GatewayPlugin["registerClient"]>[0];

4044

ws?: unknown;

@@ -72,17 +76,36 @@ function hasCarbonGatewaySocketStarted(plugin: carbonGateway.GatewayPlugin): boo

7276

return state.ws != null || state.isConnecting === true;

7377

}

747875-

export function resolveDiscordGatewayIntents(

76-

intentsConfig?: import("openclaw/plugin-sdk/config-types").DiscordIntentsConfig,

77-

): number {

79+

type ResolveDiscordGatewayIntentsParams =

80+

| import("openclaw/plugin-sdk/config-types").DiscordIntentsConfig

81+

| {

82+

intentsConfig?: import("openclaw/plugin-sdk/config-types").DiscordIntentsConfig;

83+

voiceEnabled?: boolean;

84+

};

85+86+

function isGatewayIntentsResolverOptions(

87+

value: ResolveDiscordGatewayIntentsParams | undefined,

88+

): value is Exclude<ResolveDiscordGatewayIntentsParams, undefined> & {

89+

intentsConfig?: import("openclaw/plugin-sdk/config-types").DiscordIntentsConfig;

90+

voiceEnabled?: boolean;

91+

} {

92+

return Boolean(value && ("intentsConfig" in value || "voiceEnabled" in value));

93+

}

94+95+

export function resolveDiscordGatewayIntents(params?: ResolveDiscordGatewayIntentsParams): number {

96+

const intentsConfig = isGatewayIntentsResolverOptions(params) ? params.intentsConfig : params;

97+

const voiceEnabled = isGatewayIntentsResolverOptions(params) ? params.voiceEnabled : undefined;

98+

const voiceStatesEnabled = intentsConfig?.voiceStates ?? voiceEnabled ?? true;

7899

let intents =

79100

carbonGateway.GatewayIntents.Guilds |

80101

carbonGateway.GatewayIntents.GuildMessages |

81102

carbonGateway.GatewayIntents.MessageContent |

82103

carbonGateway.GatewayIntents.DirectMessages |

83104

carbonGateway.GatewayIntents.GuildMessageReactions |

84-

carbonGateway.GatewayIntents.DirectMessageReactions |

85-

carbonGateway.GatewayIntents.GuildVoiceStates;

105+

carbonGateway.GatewayIntents.DirectMessageReactions;

106+

if (voiceStatesEnabled) {

107+

intents |= carbonGateway.GatewayIntents.GuildVoiceStates;

108+

}

86109

if (intentsConfig?.presence) {

87110

intents |= carbonGateway.GatewayIntents.GuildPresences;

88111

}

@@ -92,6 +115,26 @@ export function resolveDiscordGatewayIntents(

92115

return intents;

93116

}

94117118+

function normalizeGatewayInfoTimeoutMs(value: unknown): number | undefined {

119+

const numeric =

120+

typeof value === "number" ? value : typeof value === "string" ? Number(value) : NaN;

121+

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

122+

return undefined;

123+

}

124+

return Math.min(Math.floor(numeric), MAX_DISCORD_GATEWAY_INFO_TIMEOUT_MS);

125+

}

126+127+

export function resolveDiscordGatewayInfoTimeoutMs(params?: {

128+

configuredTimeoutMs?: number;

129+

env?: NodeJS.ProcessEnv;

130+

}): number {

131+

return (

132+

normalizeGatewayInfoTimeoutMs(params?.configuredTimeoutMs) ??

133+

normalizeGatewayInfoTimeoutMs(params?.env?.[DISCORD_GATEWAY_INFO_TIMEOUT_ENV]) ??

134+

DEFAULT_DISCORD_GATEWAY_INFO_TIMEOUT_MS

135+

);

136+

}

137+95138

function summarizeGatewayResponseBody(body: string): string {

96139

const normalized = body.trim().replace(/\s+/g, " ");

97140

if (!normalized) {

@@ -215,7 +258,7 @@ async function fetchDiscordGatewayInfoWithTimeout(params: {

215258

fetchInit?: DiscordGatewayFetchInit;

216259

timeoutMs?: number;

217260

}): Promise<APIGatewayBotInfo> {

218-

const timeoutMs = Math.max(1, params.timeoutMs ?? DISCORD_GATEWAY_INFO_TIMEOUT_MS);

261+

const timeoutMs = Math.max(1, params.timeoutMs ?? DEFAULT_DISCORD_GATEWAY_INFO_TIMEOUT_MS);

219262

const abortController = new AbortController();

220263

let timeoutId: ReturnType<typeof setTimeout> | undefined;

221264

const timeoutPromise = new Promise<never>((_, reject) => {

@@ -259,9 +302,19 @@ function resolveGatewayInfoWithFallback(params: { runtime?: RuntimeEnv; error: u

259302

throw params.error;

260303

}

261304

const message = formatErrorMessage(params.error);

262-

params.runtime?.log?.(

263-

`discord: gateway metadata lookup failed transiently; using default gateway url (${message})`,

264-

);

305+

const now = Date.now();

306+

if (params.runtime) {

307+

const previous = gatewayMetadataFallbackLogLastAt.get(params.runtime);

308+

if (

309+

previous === undefined ||

310+

now - previous >= DISCORD_GATEWAY_METADATA_FALLBACK_LOG_INTERVAL_MS

311+

) {

312+

params.runtime.log?.(

313+

`discord: gateway metadata lookup failed transiently; using default gateway url (${message})`,

314+

);

315+

gatewayMetadataFallbackLogLastAt.set(params.runtime, now);

316+

}

317+

}

265318

return {

266319

info: createDefaultGatewayInfo(),

267320

usedFallback: true,

@@ -274,6 +327,7 @@ function createGatewayPlugin(params: {

274327

intents: number;

275328

autoInteractions: boolean;

276329

};

330+

gatewayInfoTimeoutMs: number;

277331

fetchImpl: DiscordGatewayFetch;

278332

fetchInit?: DiscordGatewayFetchInit;

279333

wsAgent?: InstanceType<typeof httpsProxyAgent.HttpsProxyAgent<string>>;

@@ -334,6 +388,7 @@ function createGatewayPlugin(params: {

334388

token: client.options.token,

335389

fetchImpl: params.fetchImpl,

336390

fetchInit: params.fetchInit,

391+

timeoutMs: params.gatewayInfoTimeoutMs,

337392

})

338393

.then((info) => ({

339394

info,

@@ -479,9 +534,16 @@ export function createDiscordGatewayPlugin(params: {

479534

) => Promise<void>;

480535

};

481536

}): carbonGateway.GatewayPlugin {

482-

const intents = resolveDiscordGatewayIntents(params.discordConfig?.intents);

537+

const intents = resolveDiscordGatewayIntents({

538+

intentsConfig: params.discordConfig?.intents,

539+

voiceEnabled: params.discordConfig?.voice?.enabled !== false,

540+

});

483541

const proxy = resolveEffectiveDebugProxyUrl(params.discordConfig?.proxy);

484542

const debugProxySettings = resolveDebugProxySettings();

543+

const gatewayInfoTimeoutMs = resolveDiscordGatewayInfoTimeoutMs({

544+

configuredTimeoutMs: params.discordConfig?.gatewayInfoTimeoutMs,

545+

env: process.env,

546+

});

485547

const options = {

486548

reconnect: { maxAttempts: 50 },

487549

intents,

@@ -493,6 +555,7 @@ export function createDiscordGatewayPlugin(params: {

493555

if (!proxy) {

494556

return createGatewayPlugin({

495557

options,

558+

gatewayInfoTimeoutMs,

496559

fetchImpl: async (input, init) => {

497560

return await fetchDiscordGatewayMetadataDirect(

498561

input,

@@ -525,6 +588,7 @@ export function createDiscordGatewayPlugin(params: {

525588526589

return createGatewayPlugin({

527590

options,

591+

gatewayInfoTimeoutMs,

528592

fetchImpl: async (input, init) => {

529593

return await fetchDiscordGatewayMetadataDirect(

530594

input,

@@ -550,6 +614,7 @@ export function createDiscordGatewayPlugin(params: {

550614

params.runtime.error?.(danger(`discord: invalid gateway proxy: ${String(err)}`));

551615

return createGatewayPlugin({

552616

options,

617+

gatewayInfoTimeoutMs,

553618

fetchImpl: (input, init) => fetchDiscordGatewayMetadataDirect(input, init, false),

554619

runtime: params.runtime,

555620

testing: params.__testing