fix: quiet telegram getUpdates errors

This commit is contained in:
Peter Steinberger
2026-01-09 15:35:22 +01:00
parent b85854d0fe
commit 407a3c2c10
3 changed files with 4 additions and 0 deletions

View File

@@ -96,6 +96,7 @@
- CLI: centralize lobster palette + apply it to onboarding/config prompts. — thanks @steipete
- Gateway/CLI: add `clawdbot gateway --dev/--reset` to auto-create a dev config/workspace with a robot identity (no BOOTSTRAP.md), and reset wipes config/creds/sessions/workspace (subcommand --dev no longer collides with global --dev profile). — thanks @steipete
- Configure: stop prompting to open the Control UI (still shown in onboarding). — thanks @steipete
- Telegram: suppress grammY getUpdates stack traces; log concise retry message instead. — thanks @steipete
- Config: fix Minimax hosted onboarding to write `agents.defaults` and allow `msteams` as a heartbeat target. — thanks @steipete
## 2026.1.8

View File

@@ -119,6 +119,7 @@ describe("monitorTelegramProvider (grammY)", () => {
expect.anything(),
expect.objectContaining({
sink: { concurrency: 3 },
runner: expect.objectContaining({ silent: true }),
}),
);
});

View File

@@ -35,6 +35,8 @@ export function createTelegramRunnerOptions(
// Match grammY defaults
timeout: 30,
},
// Suppress grammY getUpdates stack traces; we log concise errors ourselves.
silent: true,
},
};
}