diff --git a/ntex-tokio/src/signals.rs b/ntex-tokio/src/signals.rs index 3a1bce78..1e6cb74a 100644 --- a/ntex-tokio/src/signals.rs +++ b/ntex-tokio/src/signals.rs @@ -112,7 +112,7 @@ impl Future for Signals { { for (sig, stream, kind) in self.signals.iter_mut() { loop { - if let Poll::Ready(res) = Pin::new(&mut *stream).poll_recv(cx) { + if Pin::new(&mut *stream).poll_recv(cx).is_ready() { let handlers = SHANDLERS.with(|h| mem::take(&mut *h.borrow_mut())); for sender in handlers { let _ = sender.send(*sig); diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 0eea1f57..500260f4 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "0.6.3" +version = "0.6.4" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md"