mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue