Skip to content

Commit

Permalink
Fix panic of unexpected close of UDP socket
Browse files Browse the repository at this point in the history
  • Loading branch information
mokeyish authored and bluejekyll committed Apr 2, 2023
1 parent 41e8b68 commit ea1fbc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/server/src/server/server_future.rs
Expand Up @@ -70,7 +70,7 @@ impl<T: RequestHandler> ServerFuture<T> {
let message = match message {
Err(e) => {
warn!("error receiving message on udp_socket: {}", e);
break;
continue;
}
Ok(message) => message,
};
Expand Down

0 comments on commit ea1fbc4

Please sign in to comment.