mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Remove slow frame timer if service is not ready
This commit is contained in:
parent
8a91402248
commit
9db4f21d71
4 changed files with 13 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.9] - 2023-11-21
|
||||||
|
|
||||||
|
* Remove slow frame timer if service is not ready
|
||||||
|
|
||||||
## [0.3.8] - 2023-11-17
|
## [0.3.8] - 2023-11-17
|
||||||
|
|
||||||
* Remove useless logs
|
* Remove useless logs
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-io"
|
name = "ntex-io"
|
||||||
version = "0.3.8"
|
version = "0.3.9"
|
||||||
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"]
|
||||||
|
|
|
@ -488,6 +488,13 @@ where
|
||||||
// pause io read task
|
// pause io read task
|
||||||
Poll::Pending => {
|
Poll::Pending => {
|
||||||
log::trace!("service is not ready, register dispatch task");
|
log::trace!("service is not ready, register dispatch task");
|
||||||
|
|
||||||
|
// remove all timers
|
||||||
|
if self.flags.contains(Flags::READ_TIMEOUT) {
|
||||||
|
self.flags.remove(Flags::READ_TIMEOUT);
|
||||||
|
self.shared.io.stop_timer();
|
||||||
|
}
|
||||||
|
|
||||||
match ready!(self.shared.io.poll_read_pause(cx)) {
|
match ready!(self.shared.io.poll_read_pause(cx)) {
|
||||||
IoStatusUpdate::KeepAlive => {
|
IoStatusUpdate::KeepAlive => {
|
||||||
log::trace!("keep-alive error, stopping dispatcher during pause");
|
log::trace!("keep-alive error, stopping dispatcher during pause");
|
||||||
|
|
|
@ -58,7 +58,7 @@ ntex-util = "0.3.4"
|
||||||
ntex-bytes = "0.1.21"
|
ntex-bytes = "0.1.21"
|
||||||
ntex-h2 = "0.4.4"
|
ntex-h2 = "0.4.4"
|
||||||
ntex-rt = "0.4.10"
|
ntex-rt = "0.4.10"
|
||||||
ntex-io = "0.3.7"
|
ntex-io = "0.3.9"
|
||||||
ntex-tls = "0.3.2"
|
ntex-tls = "0.3.2"
|
||||||
ntex-tokio = { version = "0.3.1", optional = true }
|
ntex-tokio = { version = "0.3.1", optional = true }
|
||||||
ntex-glommio = { version = "0.3.0", optional = true }
|
ntex-glommio = { version = "0.3.0", optional = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue