mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
rustfmt
This commit is contained in:
parent
6d1d77398c
commit
9bf6f3111d
1 changed files with 2 additions and 1 deletions
|
@ -477,7 +477,8 @@ where
|
|||
fn poll_service(&mut self, cx: &mut Context<'_>) -> Poll<PollService<U>> {
|
||||
// check service readiness
|
||||
if self.flags.contains(Flags::READY) {
|
||||
if self.ready_count != 0 && self.shared.service.poll_not_ready(cx).is_pending() {
|
||||
if self.ready_count != 0 && self.shared.service.poll_not_ready(cx).is_pending()
|
||||
{
|
||||
self.ready_count -= 1;
|
||||
return Poll::Ready(self.check_error());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue