Skip to content

Commit 475810e

Browse files
committed
DPL: Do not report dropping of timers (unneeded)
1 parent 2af2d97 commit 475810e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Framework/Core/src/DataRelayer.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,9 @@ void DataRelayer::setOldestPossibleInput(TimesliceId proposed, ChannelIndex chan
318318
if (didDrop) {
319319
for (size_t mi = 0; mi < mInputs.size(); ++mi) {
320320
auto& input = mInputs[mi];
321+
if (input.lifetime == Lifetime::Timer) {
322+
continue;
323+
}
321324
auto& element = mCache[si * mInputs.size() + mi];
322325
if (element.size() == 0) {
323326
LOGP(error, "Missing {} (lifetime:{}) while dropping incomplete data in slot {} with timestamp {} < {}.", DataSpecUtils::describe(input), input.lifetime, si, timestamp.value, newOldest.timeslice.value);

0 commit comments

Comments
 (0)