nginx-conf

This commit is contained in:
2023-10-18 14:29:50 +03:00
parent b779075ec2
commit 7de5c3e6ed
2 changed files with 9 additions and 16 deletions

View File

@@ -64,7 +64,7 @@ async fn connect_handler(
ServerError("Internal Server Error")
})?;
let (tx, mut rx) = broadcast::channel(100);
let (tx, rx) = broadcast::channel(100);
let state_clone = state.clone();
let handle = tokio::spawn(async move {
let conn = state_clone.redis.get_async_connection().await.unwrap();