From 439a5310199b42bed784dbbc7e3cc8e3b9276da8 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Sun, 10 Nov 2024 16:47:11 +0100 Subject: [PATCH] DPL: enable the plugin for any parent option 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. --- Framework/Core/src/Plugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/Plugin.cxx b/Framework/Core/src/Plugin.cxx index 726b12ff68365..0d225b81c0581 100644 --- a/Framework/Core/src/Plugin.cxx +++ b/Framework/Core/src/Plugin.cxx @@ -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; }