From 89af0a3cf84fc5cab456d4705910cbdd8f07a025 Mon Sep 17 00:00:00 2001 From: Jonas Eppelt <jonas.eppelt@kit.edu> Date: Fri, 15 Nov 2024 12:14:21 +0100 Subject: [PATCH] making rsync more verbose --- bb2etp/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb2etp/core.py b/bb2etp/core.py index 9281954..9a5d460 100644 --- a/bb2etp/core.py +++ b/bb2etp/core.py @@ -328,7 +328,7 @@ class BeambackgroundMetadata: self.on_etp ), "Executions does not seem to be on ETP. Ceph paths are not accessible." assert self.kek_path is not None, "kek_paths is None. Please set the paths." - os.system(f"rsync -acz -r --mkpath {host}:{self.kek_path} {self.ceph_path}") + os.system(f"rsync -acz -r --mkpath --stats -h --progress --{host}:{self.kek_path} {self.ceph_path}") def get_beam_background_by_key(key: str, json_data: str = json_default_path): -- GitLab