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
tokio_io::length_delimited::FramedWrite::do_write does not handle Ok(Async::Ready(0)) specifically, which could be returned from AsyncWrite::write_buf, which calls AsyncWrite::poll_write, which in turn calls std::io::Write::write, whose documentation states: "A return value of 0 typically means that the underlying object is no longer able to accept bytes and will likely not be able to in the future as well [...]". Instead, the loop will continue and if Ok(Async::Ready(0)) is returned consistently, never terminate.
The text was updated successfully, but these errors were encountered:
tokio_io::length_delimited::FramedWrite::do_write
does not handleOk(Async::Ready(0))
specifically, which could be returned fromAsyncWrite::write_buf
, which callsAsyncWrite::poll_write
, which in turn callsstd::io::Write::write
, whose documentation states: "A return value of 0 typically means that the underlying object is no longer able to accept bytes and will likely not be able to in the future as well [...]". Instead, the loop will continue and ifOk(Async::Ready(0))
is returned consistently, never terminate.The text was updated successfully, but these errors were encountered: