From 038fe49bd6d85cff075111cbc3c827b993876761 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 21 May 2025 12:58:01 +0200 Subject: [PATCH] DPL: fix error reporting Any oldest possible timeframe message was accounted as error. Maybe we should simply drop the metric... --- Framework/Core/src/DataProcessingDevice.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/DataProcessingDevice.cxx b/Framework/Core/src/DataProcessingDevice.cxx index ae25d8d3a915c..c303af4858234 100644 --- a/Framework/Core/src/DataProcessingDevice.cxx +++ b/Framework/Core/src/DataProcessingDevice.cxx @@ -2107,7 +2107,7 @@ void DataProcessingDevice::handleData(ServiceRegistryRef ref, InputChannelInfo& LOGP(debug, "Got DomainInfoHeader, new oldestPossibleTimeslice {} on channel {}", oldestPossibleTimeslice, info.id.value); parts.At(headerIndex).reset(nullptr); parts.At(payloadIndex).reset(nullptr); - } + } break; case InputType::Invalid: { reportError("Invalid part found."); } break;