Skip to content

Commit

Permalink
DPL: allow plugins to know about discoveries of other plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Nov 7, 2024
1 parent a55f482 commit 2d015ad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion Framework/Core/include/Framework/runDataProcessing.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ int mainNoCatch(int argc, char** argv)
for (auto& extra : extraOptions) {
workflowOptions.push_back(extra);
}
workflowOptionsRegistry.loadExtra(extraOptions);

ConfigContext configContext(workflowOptionsRegistry, argc, argv);
o2::framework::WorkflowSpec specs = defineDataProcessing(configContext);
Expand Down
1 change: 1 addition & 0 deletions Framework/Core/src/ConfigParamDiscovery.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ std::vector<ConfigParamSpec> ConfigParamDiscovery::discover(ConfigParamRegistry&
for (auto& extra : extras) {
result.push_back(extra);
}
registry.loadExtra(extras);
}
return result;
}
Expand Down

0 comments on commit 2d015ad

Please sign in to comment.