Add throttle in check_pending_updates

This commit is contained in:
2024-05-24 01:38:07 +02:00
parent 5288eb0b0a
commit 41ecf697f2

View File

@@ -6,6 +6,7 @@ pub mod utils;
use once_cell::sync::Lazy; use once_cell::sync::Lazy;
use smartstring::alias::String as SmartString; use smartstring::alias::String as SmartString;
use teloxide::adaptors::throttle::Limits;
use teloxide::stop::StopToken; use teloxide::stop::StopToken;
use tokio::task::JoinSet; use tokio::task::JoinSet;
use tracing::log; use tracing::log;
@@ -142,7 +143,7 @@ impl BotsManager {
continue; continue;
} }
let bot = Bot::new(token.clone().as_str()); let bot = Bot::new(token.clone().as_str()).throttle(Limits::default());
let result = bot.get_webhook_info().send().await; let result = bot.get_webhook_info().send().await;