From 8aa769fa78a236fc89bc4b2629fd8b17a5193c3a Mon Sep 17 00:00:00 2001 From: Felipe Marques de Almeida Date: Fri, 20 Sep 2024 10:59:01 +0000 Subject: [PATCH] fix attempt number --- conf/base.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/base.config b/conf/base.config index 6a476e9..2a67fcf 100644 --- a/conf/base.config +++ b/conf/base.config @@ -40,7 +40,7 @@ process { // problematic module withName: GET_NCBI_GENOME { - errorStrategy = { task.attempt > 4 ? 'retry' : 'ignore' } + errorStrategy = { task.attempt > 3 ? 'retry' : 'ignore' } maxRetries = 2 maxErrors = '-1' cpus = 2