fix(telegram): use curl transport for explicit proxies - #982
Open
ArcanePivot wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
channels.telegram.accounts.<id>.proxyis configuredProblem
The live channel probe already uses
curlPostWithProxy, but the Telegram runtime uses the native proxy client. On an OpenWrt MIPS32r2 device behind an explicit HTTP proxy, the probe and direct Bot API checks succeeded while every runtime request (deleteWebhook, command sync, andgetUpdates) returned a non-2xx status. This caused the channel manager to mark Telegram unhealthy and restart it repeatedly.Using the same curl proxy path as the live probe fixed polling and delivery on the physical device. Keeping the change conditional preserves the native HTTP path for installations without an explicit channel proxy.
Validation
zig fmt --check src/channels/telegram_api.zigzig build -Doptimize=ReleaseSmall -Dtarget=mipsel-linux-musleabi -Dembedded_wasm3=false(7/7 steps)ok, Telegram polling had zero transport errors, outbound agent delivery succeeded, and a service restart recovered cleanlycredentialed curl helpers preserve resolve pinningandresolveConnectHost fails on unresolvable host)No credentials, endpoints, or device-specific configuration are included.