mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 07:36:43 +00:00
fmt
This commit is contained in:
parent
00ba8d5549
commit
85753130d9
2 changed files with 6 additions and 10 deletions
|
@ -291,11 +291,7 @@ where
|
||||||
type Future = H2ServiceHandlerResponse<T, S, B>;
|
type Future = H2ServiceHandlerResponse<T, S, B>;
|
||||||
|
|
||||||
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
self.flow
|
self.flow.borrow_mut().service.poll_ready(cx).map_err(|e| {
|
||||||
.borrow_mut()
|
|
||||||
.service
|
|
||||||
.poll_ready(cx)
|
|
||||||
.map_err(|e| {
|
|
||||||
let e = e.into();
|
let e = e.into();
|
||||||
error!("Service readiness error: {:?}", e);
|
error!("Service readiness error: {:?}", e);
|
||||||
DispatchError::Service(e)
|
DispatchError::Service(e)
|
||||||
|
|
|
@ -581,7 +581,7 @@ where
|
||||||
)),
|
)),
|
||||||
},
|
},
|
||||||
|
|
||||||
proto => unimplemented!("Unsupported HTTP version: {:?}.", proto)
|
proto => unimplemented!("Unsupported HTTP version: {:?}.", proto),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue