mirror of
https://github.com/flibusta-apps/book_bot.git
synced 2025-12-06 15:35:35 +01:00
Try fix
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
use axum::extract::State;
|
|
||||||
use axum::response::IntoResponse;
|
use axum::response::IntoResponse;
|
||||||
use axum::routing::post;
|
use axum::routing::post;
|
||||||
use axum::{extract::Path, routing::get};
|
use axum::{extract::Path, routing::get};
|
||||||
@@ -26,7 +25,7 @@ use crate::bots_manager::{internal::start_bot, BOTS_DATA, BOTS_ROUTES, SERVER_PO
|
|||||||
|
|
||||||
pub async fn start_axum_server(stop_signal: Arc<AtomicBool>) {
|
pub async fn start_axum_server(stop_signal: Arc<AtomicBool>) {
|
||||||
async fn telegram_request(
|
async fn telegram_request(
|
||||||
State(start_bot_mutex): State<Arc<Mutex<()>>>,
|
// State(start_bot_mutex): State<Arc<Mutex<()>>>,
|
||||||
Path(token): Path<String>,
|
Path(token): Path<String>,
|
||||||
input: String,
|
input: String,
|
||||||
) -> impl IntoResponse {
|
) -> impl IntoResponse {
|
||||||
@@ -40,7 +39,7 @@ pub async fn start_axum_server(stop_signal: Arc<AtomicBool>) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
'creator: {
|
'creator: {
|
||||||
let _guard = start_bot_mutex.lock().await;
|
// let _guard = start_bot_mutex.lock().await;
|
||||||
|
|
||||||
if BOTS_ROUTES.contains_key(&token) {
|
if BOTS_ROUTES.contains_key(&token) {
|
||||||
break 'creator;
|
break 'creator;
|
||||||
|
|||||||
Reference in New Issue
Block a user