From 53979e39cdb498a61842611e31ecabfb174e56f3 Mon Sep 17 00:00:00 2001
From: Mia Croiset <mia.croiset@ens-lyon.fr>
Date: Thu, 4 Apr 2024 13:59:49 +0200
Subject: [PATCH] change errorStrategy

---
 conf/base.config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/base.config b/conf/base.config
index 95c429c..eaf8337 100644
--- a/conf/base.config
+++ b/conf/base.config
@@ -14,8 +14,8 @@ process {
     memory = { check_max( 8.GB * task.attempt, 'memory' ) }
     time   = { check_max( 12.h  * task.attempt, 'time'   ) }
 
-    errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
-    maxRetries    = 1
+    errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'ignore' }
+    maxRetries    = 3
     maxErrors     = '-1'
 
     // Process-specific resource requirements
-- 
GitLab