From e362495437dd154d35a94227034045b89c395736 Mon Sep 17 00:00:00 2001 From: Egg Date: Wed, 24 May 2023 17:49:06 +0200 Subject: [PATCH] Revert "Revert "decrease telegram timeout, add sleep for ratelimit"" This reverts commit 5e371768e31811dfb5f6015952ddfd2e1bf76a1e. --- active_bots/telegrambot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/active_bots/telegrambot.py b/active_bots/telegrambot.py index 7e5fc31..f9a3f94 100644 --- a/active_bots/telegrambot.py +++ b/active_bots/telegrambot.py @@ -14,9 +14,9 @@ class TelegramBot(Bot): try: updates = tb.get_updates(offset=seen_tg + 1, allowed_updates="message", - timeout=15).wait() + timeout=5).wait() except TypeError: - updates = tb.get_updates(timeout=15).wait() + updates = tb.get_updates(timeout=5).wait() reports = [] if updates == None: return reports @@ -87,8 +87,8 @@ class TelegramBot(Bot): text = text[:4096 - 2] + " \N{Horizontal ellipsis}" try: for subscriber_id in user.get_telegram_subscribers(): - sleep(0.5) tb.send_message(subscriber_id, text).wait() + sleep(0.5) except Exception: logger.error('Error telegramming: ' + user.get_city() + ': ' + str(report.id), exc_info=True)