happy_eyeballs: don't retain errored connects
This commit is contained in:
parent
7b7f2866fc
commit
8850c95155
2 changed files with 21 additions and 7 deletions
|
|
@ -89,7 +89,7 @@ impl<S: AsyncRead + AsyncWrite> Future for StreamStart<S> {
|
|||
} else {
|
||||
(StreamStartState::RecvFeatures(stream, stream_ns), Ok(Async::NotReady))
|
||||
},
|
||||
Ok(Async::Ready(item)) =>
|
||||
Ok(Async::Ready(_)) =>
|
||||
(StreamStartState::RecvFeatures(stream, stream_ns), Ok(Async::NotReady)),
|
||||
Ok(Async::NotReady) =>
|
||||
(StreamStartState::RecvFeatures(stream, stream_ns), Ok(Async::NotReady)),
|
||||
|
|
|
|||
Loading…
Reference in a new issue