ClientConnectorError fix

This commit is contained in:
Nikita Aksenov 2025-03-31 20:15:11 +03:00
parent c8cf8bf804
commit 55b3f830bb
No known key found for this signature in database
GPG key ID: 9DC1431B2123B2E8

18
main.py
View file

@ -7,7 +7,6 @@ import datetime as dt
import locale
from time import sleep
import urllib.parse
import aiohttp
# Modify the links and data below:
DEADLINES_URL = "https://m3104.nawinds.dev/DEADLINES.json"
@ -20,7 +19,6 @@ TOKEN = os.getenv("TOKEN")
MAIN_GROUP_ID = int(os.getenv("MAIN_GROUP_ID"))
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
bot = Bot(TOKEN)
@ -146,9 +144,6 @@ async def get_message_text() -> str:
return text
async def send_deadlines(chat_id: int) -> None:
retries = 20
for attempt in range(retries):
try:
text = await get_message_text()
msg = await bot.send_message(chat_id, text, parse_mode="HTML", disable_web_page_preview=True)
started_updating = dt.datetime.now()
@ -159,21 +154,12 @@ async def send_deadlines(chat_id: int) -> None:
await msg.edit_text(new_text, parse_mode="HTML", disable_web_page_preview=True)
text = new_text
await msg.delete()
break
except aiohttp.ClientConnectorError as e:
logger.error(f"Attempt {attempt + 1} failed: {e}")
if attempt < retries - 1:
await asyncio.sleep(2 ** attempt) # Exponential backoff
else:
raise
async def main():
try:
await send_deadlines(MAIN_GROUP_ID)
except Exception as e:
logger.error(f"An error occurred: {e}")
finally:
await bot.session.close()
if __name__ == '__main__':
asyncio.run(main())