From bf8c924326a21b86531815a435187955dae89353 Mon Sep 17 00:00:00 2001 From: yuyr Date: Mon, 1 Jun 2026 13:51:08 +0800 Subject: [PATCH] =?UTF-8?q?20260601=20=E4=BC=98=E5=8C=96sequence=E8=BF=9C?= =?UTF-8?q?=E7=AB=AF=E4=BA=A7=E7=89=A9=E6=8B=89=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../experiments/feature043/run_sequence_triage_experiment.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/experiments/feature043/run_sequence_triage_experiment.py b/scripts/experiments/feature043/run_sequence_triage_experiment.py index 9a6359f..1f278ed 100755 --- a/scripts/experiments/feature043/run_sequence_triage_experiment.py +++ b/scripts/experiments/feature043/run_sequence_triage_experiment.py @@ -56,6 +56,7 @@ def rsync_from_remote(target: str, source: str | Path, destination: Path) -> Non def rsync_run_artifacts_from_remote(target: str, source: str | Path, destination: Path) -> None: destination.mkdir(parents=True, exist_ok=True) + rsync_base = ["rsync", "-az", "--partial", "--partial-dir=.rsync-partial"] for name in [ "result.ccr", "result.cir", @@ -65,7 +66,7 @@ def rsync_run_artifacts_from_remote(target: str, source: str | Path, destination "started-at.txt", "finished-at.txt", ]: - run_local(["rsync", "-a", f"{target}:{source}/{name}", f"{destination}/"]) + run_local([*rsync_base, f"{target}:{source}/{name}", f"{destination}/"]) def load_json(path: Path) -> Any: