diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index e781228f..6bb48cf1 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.1] - 2023-1-23 +## [1.0.1] - 2023-01-24 * Add `FnShutdown` service to provide on_shutdown callback diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index a1c565b1..e030df1a 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "1.0.0" +version = "1.0.1" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-service/src/fn_shutdown.rs b/ntex-service/src/fn_shutdown.rs index 58428baf..53d7f23e 100644 --- a/ntex-service/src/fn_shutdown.rs +++ b/ntex-service/src/fn_shutdown.rs @@ -68,7 +68,7 @@ where #[cfg(test)] mod tests { use ntex_util::future::lazy; - use std::task::Poll; + use std::{rc::Rc, task::Poll}; use crate::{fn_service, pipeline}; @@ -76,19 +76,20 @@ mod tests { #[ntex::test] async fn test_fn_shutdown() { - let mut is_called = false; + let is_called = Rc::new(Cell::new(false)); let srv = fn_service(|_| async { Ok::<_, ()>("pipe") }); + let is_called2 = is_called.clone(); let on_shutdown = fn_shutdown(|| { - is_called = true; + is_called2.set(true); }); - let pipe = pipeline(srv).and_then(on_shutdown); + let pipe = pipeline(srv).and_then(on_shutdown).clone(); let res = pipe.call(()).await; assert_eq!(lazy(|cx| pipe.poll_ready(cx)).await, Poll::Ready(Ok(()))); assert!(res.is_ok()); assert_eq!(res.unwrap(), "pipe"); assert_eq!(lazy(|cx| pipe.poll_shutdown(cx)).await, Poll::Ready(())); - assert!(is_called); + assert!(is_called.get()); } }