Fix Telegram forum topic routing

This commit is contained in:
2569718930@qq.com
2026-06-14 05:45:07 +08:00
parent e783f35a4f
commit e6a5fd2dda
4 changed files with 66 additions and 32 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ _HTTP_SESSION_LOCK = threading.Lock()
# Bot send_message rate limiter: max N messages per second across all threads
_SEND_MSG_LOCK = threading.Lock()
_SEND_MSG_LAST_TS: float = 0.0
_SEND_MSG_MIN_INTERVAL_SEC = float(os.getenv("TELEGRAM_SEND_RATE_LIMIT_SEC", "0.05"))
_SEND_MSG_MIN_INTERVAL_SEC = float(os.getenv("TELEGRAM_SEND_RATE_LIMIT_SEC", "1.1"))
def _get_http_session() -> requests_lib.Session: