Skip to content

Commit 76eb62b

Browse files
authored
Merge pull request #884 from stjudecab/master
catch more exit error code
2 parents f3f5b09 + a2931bc commit 76eb62b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf/stjude.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ process {
3232
cache = 'lenient'
3333

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

3737
afterScript = 'sleep 10'
3838
// to avoid fail when using storeDir for missing output

0 commit comments

Comments
 (0)