]> git.proxmox.com Git - proxmox-backup.git/commitdiff
src/client/pxar_backup_stream.rs: fix docu
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 20 May 2019 15:29:00 +0000 (17:29 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 20 May 2019 15:29:00 +0000 (17:29 +0200)
src/client/pxar_backup_stream.rs

index f7a57ca96c66feb4dd3b163153af5420f9877fe2..8258229f85a9bf91329e5fd34438a2c7b1021902 100644 (file)
@@ -19,8 +19,6 @@ use crate::tools::wrapped_reader_stream::WrappedReaderStream;
 /// The hyper client needs an async Stream for file upload, so we
 /// spawn an extra thread to encode the .pxar data and pipe it to the
 /// consumer.
-///
-/// Note: The currect implementation is not fully ansync and can block.
 pub struct PxarBackupStream {
     stream: Option<WrappedReaderStream<std::fs::File>>,
     child: Option<thread::JoinHandle<()>>,