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

@ -1,5 +1,9 @@
# Changes
## [2.6.2] - 2024-12-30
* Fix error log
## [2.6.1] - 2024-12-26
* Tune shutdown logging

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-server"
version = "2.6.1"
version = "2.6.2"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Server for ntex framework"
keywords = ["network", "framework", "async", "futures"]

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)
}