mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Do not check readiness for dispatcher call
This commit is contained in:
parent
c670b51983
commit
d101fbc668
5 changed files with 33 additions and 18 deletions
|
@ -246,15 +246,19 @@ impl<'a, S: ?Sized, F: Future> Future for ReadyCall<'a, S, F> {
|
|||
// SAFETY: `fut` never moves
|
||||
let result = unsafe { Pin::new_unchecked(&mut self.as_mut().fut).poll(cx) };
|
||||
match result {
|
||||
task::Poll::Pending => self.ctx.waiters.register(self.ctx.idx, cx),
|
||||
task::Poll::Pending => {
|
||||
self.ctx.waiters.register(self.ctx.idx, cx);
|
||||
task::Poll::Pending
|
||||
}
|
||||
task::Poll::Ready(res) => {
|
||||
self.completed = true;
|
||||
self.ctx.waiters.notify();
|
||||
return task::Poll::Ready(res);
|
||||
task::Poll::Ready(res)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
task::Poll::Pending
|
||||
}
|
||||
task::Poll::Pending
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue