Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 17, 2023
1 parent 0ab107a commit b86e271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asynch/http/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ where
loop {
warn!("Handler {}: Waiting for connection", handler_id);

let io = channel.recv().await;
let io = channel.receive().await;
warn!("Handler {}: Got connection request", handler_id);

let err = handle_connection::<N, B, _, _>(io, handler_id, handler).await;
Expand Down

0 comments on commit b86e271

Please sign in to comment.