mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix error log (#493)
This commit is contained in:
parent
80676aa242
commit
a049a05c33
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.6.2] - 2024-12-30
|
||||
|
||||
* Fix error log
|
||||
|
||||
## [2.6.1] - 2024-12-26
|
||||
|
||||
* Tune shutdown logging
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue