mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Allow to use framed write task for io flushing
This commit is contained in:
parent
715331081c
commit
20f38402ab
6 changed files with 60 additions and 9 deletions
|
@ -240,7 +240,10 @@ where
|
|||
Poll::Pending => break,
|
||||
Poll::Ready(Ok(n)) => {
|
||||
if n == 0 {
|
||||
log::trace!("Disconnected during flush, written {}", written);
|
||||
log::trace!(
|
||||
"Disconnected during flush, written {}",
|
||||
written
|
||||
);
|
||||
self.flags.insert(Flags::DISCONNECTED);
|
||||
return Poll::Ready(Err(io::Error::new(
|
||||
io::ErrorKind::WriteZero,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue