Add a TODO for inbound error handling cleanup

This commit is contained in:
teor 2021-01-29 13:05:36 +10:00
parent 134a5e78bd
commit 983e94f9e4
1 changed files with 1 additions and 0 deletions

View File

@ -873,6 +873,7 @@ where
if self.svc.ready_and().await.is_err() {
// Treat all service readiness errors as Overloaded
// TODO: treat `TryRecvError::Closed` in `Inbound::poll_ready` as a fatal error (#1655)
self.fail_with(PeerError::Overloaded);
return;
}