You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this change is motivated by aiming to use interfaces like
`hyper::client::conn::http2::SendRequest::try_send_request()` or
`hyper::client::conn::http1::SendRequest::try_send_request()` in the
context of tower middleware; the `Service<T>` trait's signature is such
that the same error type be returned from `Service::poll_ready()` and
`Service::call()`.
this means that services that might resolve to a recovered message may
call `try_poll_ready` when polling for readiness.
this avoids making `TrySendError<T>` constructable externally, see hyperium#3883
as an alternate approach that was considered.
Signed-off-by: katelyn martin <git@katelyn.world>
0 commit comments