Skip to content

Commit

Permalink
DPL: enable the plugin for any parent option
Browse files Browse the repository at this point in the history
If we read metadata from parents, we might be affecting the workflow generation,
therefore we must consider all the parent affecting options as workflow ones.
  • Loading branch information
ktf committed Nov 10, 2024
1 parent dc77cb3 commit d0c4891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/src/Plugin.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ auto lookForCommandLineAODOptions = [](ConfigParamRegistry& registry, int argc,
O2_SIGNPOST_EVENT_EMIT(capabilities, sid, "DiscoverAODOptionsInCommandLineCapability", "AOD options found in arguments. Populating from them.");
return true;
}
if (arg.starts_with("--aod-parent-base-path-replacement")) {
if (arg.starts_with("--aod-parent-")) {
O2_SIGNPOST_EVENT_EMIT(capabilities, sid, "DiscoverAODOptionsInCommandLineCapability", "AOD options found in arguments. Populating from them.");
return true;
}
Expand Down

0 comments on commit d0c4891

Please sign in to comment.