Fix error log (#493)

This commit is contained in:
Nikolay Kim 2024-12-30 16:02:43 +05:00 committed by GitHub
parent 80676aa242
commit a049a05c33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View file

@ -322,10 +322,10 @@ impl Accept {
}
},
Err(err) => {
log::error!("Dropping accept loop");
break match err {
mpsc::TryRecvError::Empty => Either::Left(()),
mpsc::TryRecvError::Disconnected => {
log::error!("Dropping accept loop");
self.backpressure(true);
Either::Right(None)
}