diff --git a/ntex-bytes/Cargo.toml b/ntex-bytes/Cargo.toml index fc11acbf..9d88d9ff 100644 --- a/ntex-bytes/Cargo.toml +++ b/ntex-bytes/Cargo.toml @@ -30,4 +30,4 @@ simdutf8 = { version = "0.1.4", optional = true } serde_test = "1" serde_json = "1" ntex = { version = "1", features = ["tokio"] } -ntex-bytes = { version = "*", features = ["mpool"] } +ntex-bytes = { path = ".", features = ["mpool"] } diff --git a/ntex-glommio/src/io.rs b/ntex-glommio/src/io.rs index d2d3456c..ab5240b0 100644 --- a/ntex-glommio/src/io.rs +++ b/ntex-glommio/src/io.rs @@ -203,9 +203,10 @@ impl Future for WriteTask { Poll::Ready(Ok(())) => { let io = this.io.clone(); let fut = Box::pin(async move { - io.0.borrow() - .shutdown(std::net::Shutdown::Write) - .await + let fut = + io.0.borrow() + .shutdown(std::net::Shutdown::Write); + fut.await }); *st = Shutdown::Close(fut); continue; @@ -511,9 +512,10 @@ impl Future for UnixWriteTask { Poll::Ready(Ok(())) => { let io = this.io.clone(); let fut = Box::pin(async move { - io.0.borrow() - .shutdown(std::net::Shutdown::Write) - .await + let fut = + io.0.borrow() + .shutdown(std::net::Shutdown::Write); + fut.await }); *st = Shutdown::Close(fut); continue; diff --git a/ntex-glommio/src/signals.rs b/ntex-glommio/src/signals.rs index d06077ee..366ace9c 100644 --- a/ntex-glommio/src/signals.rs +++ b/ntex-glommio/src/signals.rs @@ -1,7 +1,7 @@ use std::{cell::RefCell, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll}; thread_local! { - static SRUN: RefCell = RefCell::new(false); + static SRUN: RefCell = const { RefCell::new(false) }; static SHANDLERS: Rc>>> = Default::default(); }