Skip to content

Commit 8f506c8

Browse files
committed
DPL: allow plugins to know about discoveries of other plugins
1 parent 09d925c commit 8f506c8

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Framework/Core/include/Framework/runDataProcessing.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ int mainNoCatch(int argc, char** argv)
197197
for (auto& extra : extraOptions) {
198198
workflowOptions.push_back(extra);
199199
}
200-
workflowOptionsRegistry.loadExtra(extraOptions);
201200

202201
ConfigContext configContext(workflowOptionsRegistry, argc, argv);
203202
o2::framework::WorkflowSpec specs = defineDataProcessing(configContext);

Framework/Core/src/ConfigParamDiscovery.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ std::vector<ConfigParamSpec> ConfigParamDiscovery::discover(ConfigParamRegistry&
7575
for (auto& extra : extras) {
7676
result.push_back(extra);
7777
}
78+
registry.loadExtra(extras);
7879
}
7980
return result;
8081
}

0 commit comments

Comments
 (0)