mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix flush framed write task
This commit is contained in:
parent
a501712bc0
commit
79c4a34dbc
4 changed files with 38 additions and 31 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.2.0-b.2] - 2021-01-20
|
||||
|
||||
* Fix flush framed write task
|
||||
|
||||
## [0.2.0-b.1] - 2021-01-19
|
||||
|
||||
* Introduce ntex::framed module
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.2.0-b.1"
|
||||
version = "0.2.0-b.2"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -433,7 +433,6 @@ mod tests {
|
|||
use bytes::Bytes;
|
||||
use futures::future::FutureExt;
|
||||
|
||||
use crate::channel::condition::Condition;
|
||||
use crate::codec::BytesCodec;
|
||||
use crate::rt::time::delay_for;
|
||||
use crate::testing::Io;
|
||||
|
|
|
@ -178,17 +178,16 @@ pub(super) fn flush<T>(
|
|||
io: &mut T,
|
||||
buf: &mut BytesMut,
|
||||
cx: &mut Context<'_>,
|
||||
) -> Poll<Result<(), io::Error>>
|
||||
) -> Poll<io::Result<()>>
|
||||
where
|
||||
T: AsyncRead + AsyncWrite + Unpin,
|
||||
{
|
||||
// log::trace!("flushing framed transport: {}", len);
|
||||
let len = buf.len();
|
||||
if len == 0 {
|
||||
return Poll::Ready(Ok(()));
|
||||
}
|
||||
|
||||
if len != 0 {
|
||||
let mut written = 0;
|
||||
|
||||
while written < len {
|
||||
match Pin::new(&mut *io).poll_write(cx, &buf[written..]) {
|
||||
Poll::Pending => break,
|
||||
|
@ -218,6 +217,11 @@ where
|
|||
} else {
|
||||
buf.advance(written);
|
||||
}
|
||||
}
|
||||
|
||||
// flush
|
||||
futures::ready!(Pin::new(&mut *io).poll_flush(cx))?;
|
||||
|
||||
if buf.is_empty() {
|
||||
Poll::Ready(Ok(()))
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue