diff --git a/ntex-codec/src/framed.rs b/ntex-codec/src/framed.rs index 9fda0ba6..534c51a1 100644 --- a/ntex-codec/src/framed.rs +++ b/ntex-codec/src/framed.rs @@ -260,6 +260,7 @@ where } } } + log::trace!("flushed {} bytes", written); // remove written data if written == len { diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index 1e9123c3..bd235e84 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.3.0-b.2] - 2021-02-24 + +* server: Make TestServer::connect() async + ## [0.3.0-b.1] - 2021-02-24 * Migrate to tokio 1.x diff --git a/ntex/src/server/test.rs b/ntex/src/server/test.rs index a061b026..d884cea7 100644 --- a/ntex/src/server/test.rs +++ b/ntex/src/server/test.rs @@ -1,6 +1,5 @@ //! Test server -use std::sync::mpsc; -use std::{io, net, thread}; +use std::{io, net, sync::mpsc, thread}; use socket2::{Domain, SockAddr, Socket, Type}; @@ -107,8 +106,8 @@ impl TestServer { } /// Connect to server, return TcpStream - pub fn connect(&self) -> std::io::Result { - TcpStream::from_std(net::TcpStream::connect(self.addr)?) + pub async fn connect(&self) -> io::Result { + TcpStream::connect(self.addr).await } /// Stop http server