This commit is contained in:
Nikolay Kim 2024-04-07 23:23:50 +05:00
parent 5b50b772a2
commit 135ae2ec8e

View file

@ -173,7 +173,6 @@ where
let svc_call: BoxFuture<'a, Result<S::Response, S::Error>> =
Box::pin(pl.get_ref().call(req, ctx));
#[allow(clippy::missing_transmute_annotations)]
// SAFETY: `svc_call` has same lifetime same as lifetime of `pl.svc`
// Pipeline::svc is heap allocated(Rc<S>), and it is being kept alive until
// `svc_call` get resolved to result