Skip to content
Snippets Groups Projects
Commit e2773496 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add 1 retry to all processes

parent 884ffb3f
Branches
Tags
2 merge requests!58Develop,!56Resolve "Detect error in inferMetadata for tracking"
Pipeline #8908 failed with stages
in 12 minutes and 27 seconds
......@@ -6,27 +6,23 @@ process {
executor = 'slurm'
queue = 'super'
clusterOptions = '--hold'
errorStrategy = 'retry'
maxRetries = 1
withName:trackStart {
executor = 'local'
}
withName:getBag {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:getData {
queue = 'super'
errorStrategy = 'retry'
maxRetries = 1
}
withName:parseMetadata {
executor = 'local'
}
withName:trimData {
queue = 'super'
errorStrategy = 'retry'
maxRetries = 1
}
withName:getRefInfer {
queue = 'super'
......@@ -69,44 +65,30 @@ process {
}
withName:uploadInputBag {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:uploadExecutionRun {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:uploadQC {
executor = 'local'
}
withName:uploadProcessedFile {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:uploadOutputBag {
executor = 'local'
}
withName:finalizeExecutionRun {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:failPreExecutionRun {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:failPreExecutionRun {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:failExecutionRun {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment