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

Add retries to all data-hub processes for biohpc config

parent 860af5bd
Branches
Tags
2 merge requests!58Develop,!56Resolve "Detect error in inferMetadata for tracking"
Pipeline #8889 passed with stages
in 2 minutes and 38 seconds
......@@ -12,6 +12,8 @@ process {
}
withName:getBag {
executor = 'local'
errorStrategy = 'retry'
maxRetries = 1
}
withName:getData {
queue = 'super'
......@@ -67,30 +69,44 @@ 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