Skip to content
Snippets Groups Projects
Verified Commit 53979e39 authored by Mia Croiset's avatar Mia Croiset
Browse files

change errorStrategy

parent bc97d581
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment