We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d5b2d commit 052b5fbCopy full SHA for 052b5fb
src/http1/my_http_client_inner.rs
@@ -266,8 +266,6 @@ impl<TStream: tokio::io::AsyncRead + tokio::io::AsyncWrite + Send + Sync + 'stat
266
}
267
268
for chunk in payload.chunks(1024 * 1024) {
269
- println!("Req chunk: {:?}", std::str::from_utf8(chunk));
270
-
271
let future = stream.write_all(chunk);
272
273
let result = tokio::time::timeout(send_to_socket_timeout, future).await;
0 commit comments