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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
爱范儿
爱范儿
量子位
Martin Fowler
Martin Fowler
V
V2EX
博客园 - 三生石上(FineUI控件)
I
InfoQ
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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: keep telegram polling timeout above long poll · open...
steipete · 2026-04-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -27,6 +27,7 @@ Docs: https://docs.openclaw.ai

2727

- Plugins/runtime-deps: always write a dependency map in generated runtime-deps install manifests, so npm does not crash or prune staged bundled-plugin packages when the plan is empty. Fixes #74949. Thanks @hclsys.

2828

- Telegram: use durable message edits for streaming previews instead of native draft state, so generated replies no longer flicker through draft-to-message transitions that look like duplicates. (#75073) Thanks @obviyus.

2929

- Telegram: echo preflighted DM voice-note transcripts back to the originating chat, including Telegram DM topic thread metadata, instead of only echoing later media-understanding transcripts. Fixes #75084. Thanks @M-Lietz.

30+

- Telegram: clamp low long-polling client timeouts so configured `timeoutSeconds` values below the `getUpdates` poll window no longer force a fresh HTTPS connection every few seconds. Fixes #75114. Thanks @hpinho77.

3031

- Web search: describe `web_search` as using the configured provider instead of hard-coding Brave when DuckDuckGo or another provider is active. Fixes #75088. Thanks @sun-rongyang.

3132

- Infra/tmp: tolerate concurrent temp-dir permission repairs by rechecking directories that another process already tightened, so parallel ACP subprocess startup no longer throws `Unsafe fallback OpenClaw temp dir`. Fixes #66867. Thanks @Kane808-AI and @jarvisz8.

3233

- Agents/compaction: add an opt-in `agents.defaults.compaction.midTurnPrecheck` mid-turn precheck that detects tool-loop context pressure and triggers compaction before the next tool call instead of waiting for end-of-turn. (#73499) Thanks @marchpure and @haoxingjun.

Original file line numberDiff line numberDiff line change

@@ -724,7 +724,7 @@ curl "https://api.telegram.org/bot<bot_token>/getUpdates"

724724

- `channels.telegram.textChunkLimit` default is 4000.

725725

- `channels.telegram.chunkMode="newline"` prefers paragraph boundaries (blank lines) before length splitting.

726726

- `channels.telegram.mediaMaxMb` (default 100) caps inbound and outbound Telegram media size.

727-

- `channels.telegram.timeoutSeconds` overrides Telegram API client timeout (if unset, grammY default applies).

727+

- `channels.telegram.timeoutSeconds` overrides Telegram API client timeout (if unset, grammY default applies). Long-polling bot clients clamp configured values below the 45-second `getUpdates` request guard so idle polls are not aborted before the 30-second poll window completes.

728728

- `channels.telegram.pollingStallThresholdMs` defaults to `120000`; tune between `30000` and `600000` only for false-positive polling-stall restarts.

729729

- group context history uses `channels.telegram.historyLimit` or `messages.groupChat.historyLimit` (default 50); `0` disables.

730730

- reply/quote/forward supplemental context is currently passed as received.

@@ -864,6 +864,7 @@ Per-account, per-group, and per-topic overrides are supported (same inheritance

864864

- Node 22+ + custom fetch/proxy can trigger immediate abort behavior if AbortSignal types mismatch.

865865

- Some hosts resolve `api.telegram.org` to IPv6 first; broken IPv6 egress can cause intermittent Telegram API failures.

866866

- If logs include `TypeError: fetch failed` or `Network request for 'getUpdates' failed!`, OpenClaw now retries these as recoverable network errors.

867+

- If Telegram sockets recycle on a short fixed cadence, check for a low `channels.telegram.timeoutSeconds`; long-polling bot clients clamp configured values below the `getUpdates` request guard, but older releases could abort every poll when this was set below the long-poll timeout.

867868

- If logs include `Polling stall detected`, OpenClaw restarts polling and rebuilds the Telegram transport after 120 seconds without completed long-poll liveness by default.

868869

- `openclaw channels status --probe` and `openclaw doctor` warn when a running polling account has not completed `getUpdates` after startup grace, when a running webhook account has not completed `setWebhook` after startup grace, or when the last successful polling transport activity is stale.

869870

- Increase `channels.telegram.pollingStallThresholdMs` only when long-running `getUpdates` calls are healthy but your host still reports false polling-stall restarts. Persistent stalls usually point to proxy, DNS, IPv6, or TLS egress issues between the host and `api.telegram.org`.

Original file line numberDiff line numberDiff line change

@@ -135,11 +135,25 @@ const TELEGRAM_TIMEOUT_FALLBACK_METHODS = new Set([

135135

"setmycommands",

136136

"setwebhook",

137137

]);

138-
139138

function shouldRetryTimedOutTelegramControlRequest(method: string | null): boolean {

140139

return method !== null && TELEGRAM_TIMEOUT_FALLBACK_METHODS.has(method);

141140

}

142141
142+

function resolveTelegramClientTimeoutSeconds(params: {

143+

value: unknown;

144+

minimum?: number;

145+

}): number | undefined {

146+

const { value, minimum } = params;

147+

if (typeof value !== "number" || !Number.isFinite(value)) {

148+

return undefined;

149+

}

150+

const configured = Math.max(1, Math.floor(value));

151+

if (typeof minimum !== "number" || !Number.isFinite(minimum)) {

152+

return configured;

153+

}

154+

return Math.max(configured, Math.max(1, Math.floor(minimum)));

155+

}

156+
143157

export function createTelegramBotCore(

144158

opts: TelegramBotOptions & { telegramDeps: TelegramBotDeps },

145159

): TelegramBotInstance {

@@ -298,10 +312,10 @@ export function createTelegramBotCore(

298312

};

299313

}

300314
301-

const timeoutSeconds =

302-

typeof telegramCfg?.timeoutSeconds === "number" && Number.isFinite(telegramCfg.timeoutSeconds)

303-

? Math.max(1, Math.floor(telegramCfg.timeoutSeconds))

304-

: undefined;

315+

const timeoutSeconds = resolveTelegramClientTimeoutSeconds({

316+

value: telegramCfg?.timeoutSeconds,

317+

minimum: opts.minimumClientTimeoutSeconds,

318+

});

305319

const apiRoot = normalizeOptionalString(telegramCfg.apiRoot);

306320

const normalizedApiRoot = apiRoot ? normalizeTelegramApiRoot(apiRoot) : undefined;

307321

const client: ApiClientOptions | undefined =

Original file line numberDiff line numberDiff line change

@@ -248,6 +248,36 @@ describe("createTelegramBot", () => {

248248

);

249249

});

250250
251+

it("honors low timeoutSeconds when no polling floor is requested", () => {

252+

loadConfig.mockReturnValue({

253+

channels: {

254+

telegram: { dmPolicy: "open", allowFrom: ["*"], timeoutSeconds: 10 },

255+

},

256+

});

257+

createTelegramBot({ token: "tok" });

258+

expect(botCtorSpy).toHaveBeenCalledWith(

259+

"tok",

260+

expect.objectContaining({

261+

client: expect.objectContaining({ timeoutSeconds: 10 }),

262+

}),

263+

);

264+

});

265+
266+

it("keeps polling client timeout above the getUpdates request guard", () => {

267+

loadConfig.mockReturnValue({

268+

channels: {

269+

telegram: { dmPolicy: "open", allowFrom: ["*"], timeoutSeconds: 10 },

270+

},

271+

});

272+

createTelegramBot({ token: "tok", minimumClientTimeoutSeconds: 45 });

273+

expect(botCtorSpy).toHaveBeenCalledWith(

274+

"tok",

275+

expect.objectContaining({

276+

client: expect.objectContaining({ timeoutSeconds: 45 }),

277+

}),

278+

);

279+

});

280+
251281

it("normalizes full Telegram bot endpoint apiRoot before passing it to grammY", () => {

252282

loadConfig.mockReturnValue({

253283

channels: {

Original file line numberDiff line numberDiff line change

@@ -16,6 +16,8 @@ export type TelegramBotOptions = {

1616

config?: OpenClawConfig;

1717

/** Signal to abort in-flight Telegram API fetch requests (e.g. getUpdates) on shutdown. */

1818

fetchAbortSignal?: AbortSignal;

19+

/** Minimum grammY client timeout when timeoutSeconds is configured on long-polling bots. */

20+

minimumClientTimeoutSeconds?: number;

1921

updateOffset?: {

2022

lastUpdateId?: number | null;

2123

onUpdateId?: (updateId: number) => void | Promise<void>;

Original file line numberDiff line numberDiff line change

@@ -276,6 +276,9 @@ describe("TelegramPollingSession", () => {

276276

await session.runUntilAbort();

277277
278278

expect(runMock).toHaveBeenCalledTimes(2);

279+

expect(createTelegramBotMock).toHaveBeenCalledWith(

280+

expect.objectContaining({ minimumClientTimeoutSeconds: 45 }),

281+

);

279282

expect(computeBackoffMock).toHaveBeenCalledTimes(1);

280283

expect(sleepWithAbortMock).toHaveBeenCalledTimes(1);

281284

});

Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ import { isRecoverableTelegramNetworkError } from "./network-errors.js";

1414

import { TelegramPollingLivenessTracker } from "./polling-liveness.js";

1515

import { createTelegramPollingStatusPublisher } from "./polling-status.js";

1616

import { TelegramPollingTransportState } from "./polling-transport-state.js";

17+

import { TELEGRAM_GET_UPDATES_REQUEST_TIMEOUT_MS } from "./request-timeouts.js";

1718
1819

const TELEGRAM_POLL_RESTART_POLICY = {

1920

initialMs: 2000,

@@ -27,6 +28,9 @@ const MIN_POLL_STALL_THRESHOLD_MS = 30_000;

2728

const MAX_POLL_STALL_THRESHOLD_MS = 600_000;

2829

const POLL_WATCHDOG_INTERVAL_MS = 30_000;

2930

const POLL_STOP_GRACE_MS = 15_000;

31+

const TELEGRAM_POLLING_CLIENT_TIMEOUT_FLOOR_SECONDS = Math.ceil(

32+

TELEGRAM_GET_UPDATES_REQUEST_TIMEOUT_MS / 1000,

33+

);

3034
3135

type TelegramBot = ReturnType<typeof createTelegramBot>;

3236

@@ -184,6 +188,7 @@ export class TelegramPollingSession {

184188

config: this.opts.config,

185189

accountId: this.opts.accountId,

186190

fetchAbortSignal: fetchAbortController.signal,

191+

minimumClientTimeoutSeconds: TELEGRAM_POLLING_CLIENT_TIMEOUT_FLOOR_SECONDS,

187192

updateOffset: {

188193

lastUpdateId: this.opts.getLastUpdateId(),

189194

onUpdateId: this.opts.persistUpdateId,

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

export const TELEGRAM_GET_UPDATES_REQUEST_TIMEOUT_MS = 45_000;

2+
13

const TELEGRAM_REQUEST_TIMEOUTS_MS = {

24

// Bound startup/control-plane calls so the gateway cannot report Telegram as

35

// healthy while provider startup is still hung on Bot API setup.

@@ -9,7 +11,7 @@ const TELEGRAM_REQUEST_TIMEOUTS_MS = {

911

getchat: 15_000,

1012

getfile: 30_000,

1113

getme: 15_000,

12-

getupdates: 45_000,

14+

getupdates: TELEGRAM_GET_UPDATES_REQUEST_TIMEOUT_MS,

1315

pinchatmessage: 15_000,

1416

sendanimation: 30_000,

1517

sendaudio: 30_000,