From ad03088d349e0c96233f431282c7a91109a44fee Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Tue, 28 Nov 2023 17:54:56 +0100 Subject: [PATCH] DPL: mark dummy sink as resilient to expendable task failures --- Framework/Core/src/CommonDataProcessors.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Framework/Core/src/CommonDataProcessors.cxx b/Framework/Core/src/CommonDataProcessors.cxx index e9cdc97e316ca..3c86f921c01b8 100644 --- a/Framework/Core/src/CommonDataProcessors.cxx +++ b/Framework/Core/src/CommonDataProcessors.cxx @@ -599,9 +599,8 @@ DataProcessorSpec CommonDataProcessors::getDummySink(std::vector cons .options = !rateLimitingChannelConfig.empty() ? std::vector{{"channel-config", VariantType::String, // raw input channel rateLimitingChannelConfig, {"Out-of-band channel config"}}} - : std::vector() - - }; + : std::vector(), + .labels = {{"resilient"}}}; } AlgorithmSpec CommonDataProcessors::wrapWithRateLimiting(AlgorithmSpec spec)