From 90a5c71e43c602f3d919c9127993b649c5ed7f3c Mon Sep 17 00:00:00 2001 From: zayac Date: Wed, 21 Feb 2024 14:03:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E5=8F=91=E7=94=9F=E5=BC=82=E5=B8=B8=E6=97=B6=E5=8F=91=E9=80=81?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E9=80=9A=E7=9F=A5=E4=B8=BA=E7=BE=A4=E6=B6=88?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/api_request.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/core/api_request.py b/src/core/api_request.py index 16c7c6a..b6d9336 100644 --- a/src/core/api_request.py +++ b/src/core/api_request.py @@ -7,7 +7,7 @@ import requests from aiohttp import ClientError from src import logger -from src.core.constant import BOT_TOKEN, CHAT_ID +from src.core.constant import BOT_TOKEN, GROUP_ID from src.core.login import login from src.core.message_client import send_message from src.entity.account import Account @@ -60,13 +60,13 @@ def account_post(url: str, account: Account, params: dict) -> ApiResponse[Any]: logger.error(f"Client error occurred: {e}") except TimeoutError as e: logger.error(f"") - send_message(BOT_TOKEN, CHAT_ID, f'{account.url}:加载超时,请检查是否后台更换了链接') + send_message(BOT_TOKEN, GROUP_ID, f'{account.url}:加载超时,请检查是否后台更换了链接') except Exception as e: logger.error(f"Unknown error: {e}") time.sleep(10) - send_message(BOT_TOKEN, CHAT_ID, f'{account.url}: Retry limit exceeded, please check the code') + send_message(BOT_TOKEN, GROUP_ID, f'{account.url}: Retry limit exceeded, please check the code') logger.error(f"{account.url}: Retry limit exceeded, please check the code") @@ -88,6 +88,5 @@ async def async_account_post(url: str, account: Account, params: dict) -> ApiRes # Add a delay before retrying await asyncio.sleep(10) - send_message(BOT_TOKEN, CHAT_ID, f'{account.url}: Retry limit exceeded, please check the code') + send_message(BOT_TOKEN, GROUP_ID, f'{account.url}: Retry limit exceeded, please check the code') logger.error("Retry limit exceeded, please check the code") - # You can raise a custom exception here or return an error status code