diff --git a/ntex-io/CHANGES.md b/ntex-io/CHANGES.md index 56b260d43..ce3285d1c 100644 --- a/ntex-io/CHANGES.md +++ b/ntex-io/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.3.18] - 2024-01-05 +## [0.3.18] - 2024-01-xx * Min timeout more than 1sec and less than 2sec diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index 03642ca94..71304916d 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-io" -version = "0.3.17" +version = "0.3.18" authors = ["ntex contributors "] description = "Utilities for encoding and decoding frames" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 84a4afd56..ff1d5e63b 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -100,8 +100,6 @@ webpki-roots = { version = "0.25", optional = true } brotli2 = { version="0.3.2", optional = true } flate2 = { version = "1.0.22", optional = true } -backtrace = "*" - [dev-dependencies] env_logger = "0.10" rand = "0.8" diff --git a/ntex/src/http/h1/dispatcher.rs b/ntex/src/http/h1/dispatcher.rs index bbc87e610..d6c114b16 100644 --- a/ntex/src/http/h1/dispatcher.rs +++ b/ntex/src/http/h1/dispatcher.rs @@ -906,13 +906,6 @@ where "Keep-alive", ))) } else { - log::error!( - "{}: Slow request timeout: {:?} == {:?}\n{:?}", - self.io.tag(), - self.io.flags(), - self.flags, - backtrace::Backtrace::new() - ); Err(DispatchError::SlowRequestTimeout) } }