알람전송오류

This commit is contained in:
haneulai 2026-03-30 16:06:39 +09:00
parent c94ca954dd
commit 19103b3226

View File

@ -51,7 +51,7 @@ class AlertManager:
url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage"
try:
payload = {"chat_id": chat_id, "text": message}
response = requests.post(url, json=payload, timeout=5)
response = requests.post(url, json=payload, timeout=15)
if response.status_code == 200:
print(f" 🔔 텔레그램 알림 전송 성공")