Skip to content

Commit

Permalink
dynamite error strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonHafner committed Jan 4, 2025
1 parent 45ba08d commit cb8e10a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ process {
}

withName: "RUN_DYNAMITE" {
errorStrategy = "ignore"
//Produces an error if the input is too small and ends with exitStatus 139
errorStrategy = { task.exitStatus == 139 ? 'ignore' : 'retry' }
}

withName: ".*RANKING:CREATE_RANKING" {
Expand Down

0 comments on commit cb8e10a

Please sign in to comment.