From d9d44afda2bc26d5edbcf68fd770f3569c347426 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin <dmitry.kalinkin@gmail.com> Date: Thu, 12 Sep 2024 13:23:59 -0400 Subject: [PATCH] Snakefile: set reties to 3 for fetch_epic --- Snakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Snakefile b/Snakefile index f8a02857..0c9de136 100644 --- a/Snakefile +++ b/Snakefile @@ -24,6 +24,7 @@ def get_remote_path(path): rule fetch_epic: output: filepath="EPIC/{PATH}" + retries: 3 shell: """ xrdcp root://dtn-eic.jlab.org//work/eic2/{output.filepath} {output.filepath} """ if use_xrootd else """ -- GitLab