mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
Fix KeepAlive timeout handling in default dispatcher (#351)
This commit is contained in:
parent
316f9083d1
commit
33490cd360
6 changed files with 26 additions and 11 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.1.0] - 2024-05-01
|
||||||
|
|
||||||
|
* Add IoRef::notify_timeout() helper method
|
||||||
|
|
||||||
|
* Fix KeepAlive timeout handling in default dispatcher
|
||||||
|
|
||||||
## [1.0.2] - 2024-03-31
|
## [1.0.2] - 2024-03-31
|
||||||
|
|
||||||
* Add IoRef::is_wr_backpressure() method
|
* Add IoRef::is_wr_backpressure() method
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-io"
|
name = "ntex-io"
|
||||||
version = "1.0.2"
|
version = "1.1.0"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for encoding and decoding frames"
|
description = "Utilities for encoding and decoding frames"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -575,15 +575,19 @@ where
|
||||||
self.shared.io.tag()
|
self.shared.io.tag()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Err(DispatchItem::ReadTimeout);
|
Err(DispatchItem::ReadTimeout)
|
||||||
|
} else {
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
} else if self.flags.contains(Flags::KA_TIMEOUT) {
|
||||||
|
log::trace!(
|
||||||
|
"{}: Keep-alive error, stopping dispatcher",
|
||||||
|
self.shared.io.tag()
|
||||||
|
);
|
||||||
|
Err(DispatchItem::KeepAliveTimeout)
|
||||||
|
} else {
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
log::trace!(
|
|
||||||
"{}: Keep-alive error, stopping dispatcher",
|
|
||||||
self.shared.io.tag()
|
|
||||||
);
|
|
||||||
Err(DispatchItem::KeepAliveTimeout)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -93,13 +93,12 @@ impl IoState {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn notify_timeout(&self) {
|
pub(super) fn notify_timeout(&self) {
|
||||||
log::trace!("{}: Timeout, notify dispatcher", self.tag.get());
|
|
||||||
|
|
||||||
let mut flags = self.flags.get();
|
let mut flags = self.flags.get();
|
||||||
if !flags.contains(Flags::DSP_TIMEOUT) {
|
if !flags.contains(Flags::DSP_TIMEOUT) {
|
||||||
flags.insert(Flags::DSP_TIMEOUT);
|
flags.insert(Flags::DSP_TIMEOUT);
|
||||||
self.flags.set(flags);
|
self.flags.set(flags);
|
||||||
self.dispatch_task.wake();
|
self.dispatch_task.wake();
|
||||||
|
log::trace!("{}: Timer, notify dispatcher", self.tag.get());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -228,6 +228,12 @@ impl IoRef {
|
||||||
self.0.timeout.get()
|
self.0.timeout.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
/// wakeup dispatcher and send keep-alive error
|
||||||
|
pub fn notify_timeout(&self) {
|
||||||
|
self.0.notify_timeout()
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Start timer
|
/// Start timer
|
||||||
pub fn start_timer(&self, timeout: Seconds) -> timer::TimerHandle {
|
pub fn start_timer(&self, timeout: Seconds) -> timer::TimerHandle {
|
||||||
|
|
|
@ -67,7 +67,7 @@ ntex-bytes = "0.1.25"
|
||||||
ntex-server = "1.0.5"
|
ntex-server = "1.0.5"
|
||||||
ntex-h2 = "0.5.4"
|
ntex-h2 = "0.5.4"
|
||||||
ntex-rt = "0.4.12"
|
ntex-rt = "0.4.12"
|
||||||
ntex-io = "1.0.1"
|
ntex-io = "1.1.0"
|
||||||
ntex-net = "1.0.1"
|
ntex-net = "1.0.1"
|
||||||
ntex-tls = "1.1.0"
|
ntex-tls = "1.1.0"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue