Skip to content

Commit 546f793

Browse files
authored
DPL: fix error reporting (#14306)
Any oldest possible timeframe message was accounted as error. Maybe we should simply drop the metric...
1 parent 2378167 commit 546f793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/DataProcessingDevice.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,7 @@ void DataProcessingDevice::handleData(ServiceRegistryRef ref, InputChannelInfo&
21072107
LOGP(debug, "Got DomainInfoHeader, new oldestPossibleTimeslice {} on channel {}", oldestPossibleTimeslice, info.id.value);
21082108
parts.At(headerIndex).reset(nullptr);
21092109
parts.At(payloadIndex).reset(nullptr);
2110-
}
2110+
} break;
21112111
case InputType::Invalid: {
21122112
reportError("Invalid part found.");
21132113
} break;

0 commit comments

Comments
 (0)