mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
clippy
This commit is contained in:
parent
a98f63b1bf
commit
3db65156ee
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.6.3"
|
||||
version = "0.6.4"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue