diff --git a/src/channel.rs b/src/channel.rs index 9741b6c..7c7c2d9 100644 --- a/src/channel.rs +++ b/src/channel.rs @@ -19,7 +19,7 @@ type BlockingSender = futures::sink::Wait; pub fn stream_tar_in_thread(path: PathBuf) -> Stream { - let (writer, stream) = StreamWriter::new(4 * 1024 * 1024); + let (writer, stream) = StreamWriter::new(64); thread::spawn(move || { let mut a = tar::Builder::new(writer);