diff --git a/ntex-bytes/src/buf/uninit_slice.rs b/ntex-bytes/src/buf/uninit_slice.rs index 9b16eb6e..ce4025f2 100644 --- a/ntex-bytes/src/buf/uninit_slice.rs +++ b/ntex-bytes/src/buf/uninit_slice.rs @@ -105,7 +105,7 @@ impl UninitSlice { /// Return a raw pointer to the slice's buffer. /// - /// # Safety + /// // Safety /// /// The caller **must not** read from the referenced memory and **must not** /// write **uninitialized** bytes to the slice either. diff --git a/ntex-connect/Cargo.toml b/ntex-connect/Cargo.toml index 3ba73ea1..91ab8887 100644 --- a/ntex-connect/Cargo.toml +++ b/ntex-connect/Cargo.toml @@ -57,5 +57,5 @@ webpki-roots = { version = "0.22", optional = true } [dev-dependencies] rand = "0.8" -env_logger = "0.9" +env_logger = "0.10" ntex = { version = "0.5", features = ["tokio"] } diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index ec051084..5bf81a30 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -27,6 +27,6 @@ pin-project-lite = "0.2" [dev-dependencies] rand = "0.8" -env_logger = "0.9" +env_logger = "0.10" ntex = { version = "0.5", features = ["tokio"] } diff --git a/ntex-macros/Cargo.toml b/ntex-macros/Cargo.toml index 958c1756..453b13ae 100644 --- a/ntex-macros/Cargo.toml +++ b/ntex-macros/Cargo.toml @@ -18,4 +18,4 @@ proc-macro2 = "^1" [dev-dependencies] ntex = { version = "0.5.0", features = ["tokio"] } futures = "0.3" -env_logger = "0.9" \ No newline at end of file +env_logger = "0.10" \ No newline at end of file diff --git a/ntex-tls/Cargo.toml b/ntex-tls/Cargo.toml index 85ff5545..8f65f6ba 100644 --- a/ntex-tls/Cargo.toml +++ b/ntex-tls/Cargo.toml @@ -40,6 +40,6 @@ tls_rust = { version = "0.20", package = "rustls", optional = true } [dev-dependencies] ntex = { version = "0.5", features = ["openssl", "rustls", "tokio"] } -env_logger = "0.9" +env_logger = "0.10" rustls-pemfile = { version = "0.2" } webpki-roots = { version = "0.22" } diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index dc313189..c896f980 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -1,5 +1,8 @@ # Changes +## [0.5.30] - 2022-11-25 + + ## [0.5.29] - 2022-11-03 * Handle io disconnect during h1/h2 server handling diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index e34f300f..5098883a 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "0.5.29" +version = "0.5.30" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md" @@ -50,7 +50,7 @@ async-std = ["ntex-rt/async-std", "ntex-async-std", "ntex-connect/async-std"] [dependencies] ntex-codec = "0.6.2" ntex-connect = "0.1.0" -ntex-http = "0.1.6" +ntex-http = "0.1.7" ntex-router = "0.5.1" ntex-service = "0.3.2" ntex-macros = "0.1.3" @@ -102,7 +102,7 @@ brotli2 = { version="0.3.2", optional = true } flate2 = { version = "1.0.22", optional = true } [dev-dependencies] -env_logger = "0.9" +env_logger = "0.10" rand = "0.8" time = "0.3" futures-util = "0.3" diff --git a/ntex/src/http/client/connector.rs b/ntex/src/http/client/connector.rs index 1e84d2ce..1b8f9607 100644 --- a/ntex/src/http/client/connector.rs +++ b/ntex/src/http/client/connector.rs @@ -1,4 +1,4 @@ -use std::{rc::Rc, task::Context, task::Poll, time::Duration}; +use std::{future::Future, rc::Rc, task::Context, task::Poll, time::Duration}; use ntex_h2::{self as h2}; @@ -252,8 +252,12 @@ fn connector( connector: BoxedConnector, timeout: Millis, disconnect_timeout: Millis, -) -> impl Service + Unpin -{ +) -> impl Service< + Connect, + Response = IoBoxed, + Error = ConnectError, + Future = impl Unpin + Future, +> + Unpin { TimeoutService::new( timeout, apply_fn(connector, |msg: Connect, srv| { diff --git a/ntex/src/http/h1/decoder.rs b/ntex/src/http/h1/decoder.rs index 9cc7655b..edc3be29 100644 --- a/ntex/src/http/h1/decoder.rs +++ b/ntex/src/http/h1/decoder.rs @@ -986,8 +986,8 @@ mod tests { .get_all(SET_COOKIE) .map(|v| v.to_str().unwrap().to_owned()) .collect(); - assert_eq!(val[1], "c1=cookie1"); - assert_eq!(val[0], "c2=cookie2"); + assert_eq!(val[0], "c1=cookie1"); + assert_eq!(val[1], "c2=cookie2"); } #[test] diff --git a/ntex/src/http/response.rs b/ntex/src/http/response.rs index ce33f061..1e952f90 100644 --- a/ntex/src/http/response.rs +++ b/ntex/src/http/response.rs @@ -479,7 +479,7 @@ impl ResponseBuilder { /// builder.finish() /// } /// ``` - pub fn del_cookie<'a>(&mut self, cookie: &Cookie<'a>) -> &mut Self { + pub fn del_cookie<'c>(&mut self, cookie: &Cookie<'c>) -> &mut Self { if self.cookies.is_none() { self.cookies = Some(CookieJar::new()) } @@ -841,7 +841,7 @@ mod tests { .max_age(time::Duration::days(1)) .finish(), ) - .del_cookie(&cookies[1]) + .del_cookie(&cookies[0]) .finish(); let mut val: Vec<_> = resp @@ -876,9 +876,9 @@ mod tests { let mut iter = r.cookies(); let v = iter.next().unwrap(); - assert_eq!((v.name(), v.value()), ("cookie3", "val300")); - let v = iter.next().unwrap(); assert_eq!((v.name(), v.value()), ("original", "val100")); + let v = iter.next().unwrap(); + assert_eq!((v.name(), v.value()), ("cookie3", "val300")); } #[test] diff --git a/ntex/src/server/builder.rs b/ntex/src/server/builder.rs index eae0a148..d85d69bb 100644 --- a/ntex/src/server/builder.rs +++ b/ntex/src/server/builder.rs @@ -425,7 +425,6 @@ impl ServerBuilder { .iter() .map(move |worker| worker.1.stop(graceful)) .collect(); - spawn(async move { let _ = join_all(futs).await; @@ -441,6 +440,10 @@ impl ServerBuilder { } }); } else { + self.workers.iter().for_each(move |worker| { + worker.1.stop(false); + }); + // we need to stop system if server was spawned if self.exit { spawn(async { diff --git a/ntex/src/server/worker.rs b/ntex/src/server/worker.rs index e7df7969..be2ebdef 100644 --- a/ntex/src/server/worker.rs +++ b/ntex/src/server/worker.rs @@ -6,7 +6,7 @@ use async_oneshot as oneshot; use crate::rt::{spawn, Arbiter}; use crate::time::{sleep, Millis, Sleep}; -use crate::util::{join_all, ready, Stream as FutStream}; +use crate::util::{join_all, ready, select, stream_recv, Either, Stream as FutStream}; use super::accept::{AcceptNotify, Command}; use super::service::{BoxedServerService, InternalServiceFactory, ServerMessage}; @@ -167,12 +167,12 @@ impl Worker { let avail = availability.clone(); Arbiter::default().exec_fn(move || { - let _ = spawn(async move { + spawn(async move { match Worker::create(rx1, rx2, factories, availability, shutdown_timeout) .await { Ok(wrk) => { - let _ = spawn(wrk); + spawn(wrk); } Err(e) => { error!("Cannot start worker: {:?}", e); @@ -218,7 +218,17 @@ impl Worker { })); } - let res: Result, _> = join_all(fut).await.into_iter().collect(); + let res: Result, _> = + match select(join_all(fut), stream_recv(&mut wrk.rx2)).await { + Either::Left(result) => result.into_iter().collect(), + Either::Right(Some(StopCommand { mut result, .. })) => { + trace!("Shutdown uninitialized worker"); + wrk.shutdown(true); + let _ = result.send(false); + return Err(()); + } + Either::Right(None) => Err(()), + }; match res { Ok(services) => { for item in services { diff --git a/ntex/src/web/httprequest.rs b/ntex/src/web/httprequest.rs index 135bcbd6..1b19dde6 100644 --- a/ntex/src/web/httprequest.rs +++ b/ntex/src/web/httprequest.rs @@ -372,10 +372,10 @@ mod tests { { let cookies = req.cookies().unwrap(); assert_eq!(cookies.len(), 2); - assert_eq!(cookies[0].name(), "cookie2"); - assert_eq!(cookies[0].value(), "value2"); - assert_eq!(cookies[1].name(), "cookie1"); - assert_eq!(cookies[1].value(), "value1"); + assert_eq!(cookies[0].name(), "cookie1"); + assert_eq!(cookies[0].value(), "value1"); + assert_eq!(cookies[1].name(), "cookie2"); + assert_eq!(cookies[1].value(), "value2"); } let cookie = req.cookie("cookie1");