Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amigin committed Apr 26, 2024
1 parent d64b1e7 commit 88dc4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http_server/https_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async fn start_https_server_loop(addr: SocketAddr, app: Arc<AppContext>) {
println!("Accepted connection from {}", socket_addr);

let app = app.clone();
tokio::spawn(async move { handle_connection(app, endpoint_port, tcp_stream, socket_addr) });
handle_connection(app, endpoint_port, tcp_stream, socket_addr).await;
}
}

Expand Down

0 comments on commit 88dc4db

Please sign in to comment.