Skip to content

Commit

Permalink
Update base.config
Browse files Browse the repository at this point in the history
Match error-handling from nf-core (solves problem with status 140 that I had)
  • Loading branch information
smlmbrt authored Feb 2, 2024
1 parent 83326a1 commit 3161c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process {
memory = { check_max( 6.GB * task.attempt, 'memory' ) }
time = { check_max( 4.h * task.attempt, 'time' ) }

errorStrategy = { task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish' }
errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
maxRetries = 1
maxErrors = '-1'

Expand Down

0 comments on commit 3161c07

Please sign in to comment.