Remove slow frame timer if service is not ready

This commit is contained in:
Nikolay Kim 2023-11-21 00:38:53 +06:00
parent 8a91402248
commit 9db4f21d71
4 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.9] - 2023-11-21
* Remove slow frame timer if service is not ready
## [0.3.8] - 2023-11-17
* Remove useless logs

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-io"
version = "0.3.8"
version = "0.3.9"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]

View file

@ -488,6 +488,13 @@ where
// pause io read task
Poll::Pending => {
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)) {
IoStatusUpdate::KeepAlive => {
log::trace!("keep-alive error, stopping dispatcher during pause");

View file

@ -58,7 +58,7 @@ ntex-util = "0.3.4"
ntex-bytes = "0.1.21"
ntex-h2 = "0.4.4"
ntex-rt = "0.4.10"
ntex-io = "0.3.7"
ntex-io = "0.3.9"
ntex-tls = "0.3.2"
ntex-tokio = { version = "0.3.1", optional = true }
ntex-glommio = { version = "0.3.0", optional = true }