Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Framework/Core/src/WorkflowCustomizationHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ namespace o2::framework
std::vector<ConfigParamSpec> WorkflowCustomizationHelpers::requiredWorkflowOptions()
{
return {{{"readers", VariantType::Int64, 1ll, {"number of parallel readers to use"}},
{"ccdb-fetchers", VariantType::Int64, 1ll, {"number of parallel ccdb-fetchers to use"}},
{"spawners", VariantType::Int64, 1ll, {"number of parallel spawners to use"}},
{"pipeline", VariantType::String, "", {"override default pipeline size"}},
{"clone", VariantType::String, "", {"clone processors from a template"}},
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/src/WorkflowHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
ccdbBackend.outputs.push_back(OutputSpec{"CTP", "OrbitReset", 0});
// Load the CCDB backend from the plugin
ccdbBackend.algorithm = PluginManager::loadAlgorithmFromPlugin("O2FrameworkCCDBSupport", "CCDBFetcherPlugin", ctx);
extraSpecs.push_back(ccdbBackend);
extraSpecs.push_back(timePipeline(ccdbBackend, ctx.options().get<int64_t>("ccdb-fetchers")));
} else if (requiresDISTSUBTIMEFRAME && enumCandidate != -1) {
// add DSTF/ccdb source to the enumeration-driven source explicitly if it is required in the workflow
DataSpecUtils::updateOutputList(workflow[enumCandidate].outputs, OutputSpec{{"ccdb-diststf"}, dstf, Lifetime::Timeframe});
Expand Down
Loading