File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
- [ PR #1528 ] ( https://github.com/nf-core/rnaseq/pull/1528 ) - Improve JSON schema validation files
20
20
- [ PR #1523 ] ( https://github.com/nf-core/rnaseq/pull/1523 ) - Update preprocessing subworkflow to fix linting block on trimming
21
21
- [ PR #1521 ] ( https://github.com/nf-core/rnaseq/pull/1521 ) - Updated Perl conda package version for local module gtf2bed for Arm compatibility.
22
+ - [ PR #1553 ] ( https://github.com/nf-core/rnaseq/pull/1553 ) - Make jobs automatically resubmit for exit code 175
22
23
23
24
# 3.18.0 - 2024-12-19
24
25
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ process {
15
15
memory = { 6.GB * task.attempt }
16
16
time = { 4.h * task.attempt }
17
17
18
- errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
18
+ errorStrategy = { task.exitStatus in ((130..145) + 104 + 175 ) ? 'retry' : 'finish' }
19
19
maxRetries = 1
20
20
maxErrors = '-1'
21
21
You can’t perform that action at this time.
0 commit comments