diff --git a/datman/src/commands/backup.rs b/datman/src/commands/backup.rs index 95a4655..caca8d0 100644 --- a/datman/src/commands/backup.rs +++ b/datman/src/commands/backup.rs @@ -202,7 +202,7 @@ pub fn backup_source_to_destination( parent, num_workers, progress_bar, - false, + true, )?; info!("Stored!"); diff --git a/datman/src/remote/backup_source_requester.rs b/datman/src/remote/backup_source_requester.rs index 2272b3c..c9b8ed4 100644 --- a/datman/src/remote/backup_source_requester.rs +++ b/datman/src/remote/backup_source_requester.rs @@ -248,7 +248,7 @@ pub fn backup_remote_source_to_destination raw_pile, parent, progress_bar, - false, + true, )?; quit(&mut read, &mut write)?; diff --git a/datman/src/remote/backup_source_responder.rs b/datman/src/remote/backup_source_responder.rs index 65cf394..1081bfe 100644 --- a/datman/src/remote/backup_source_responder.rs +++ b/datman/src/remote/backup_source_responder.rs @@ -71,7 +71,7 @@ pub fn chunking( parent, get_number_of_workers("YAMA_CHUNKERS"), progress_bar, - false, + true, )?; for join_handle in requester_join_handles { @@ -169,7 +169,7 @@ pub fn chunking_stdio() -> anyhow::Result<()> { parent, get_number_of_workers("YAMA_CHUNKERS"), &mut progress_bar, - false, + true, )?; requester_join_handles