From 278b967ee2187a0f6e4f3ce611715ff60f72331e Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 11 Nov 2020 21:58:37 +0100 Subject: [PATCH] Revert "DPL: for polling after the first EoS" This reverts commit 3ebd4d41c7e70cdd35925d73ce781443a4a0d367. --- Framework/Core/src/DataProcessingDevice.cxx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Framework/Core/src/DataProcessingDevice.cxx b/Framework/Core/src/DataProcessingDevice.cxx index fb21a635d7769..01ba3816663dc 100644 --- a/Framework/Core/src/DataProcessingDevice.cxx +++ b/Framework/Core/src/DataProcessingDevice.cxx @@ -499,14 +499,6 @@ void DataProcessingDevice::doPrepare(DataProcessorContext& context) auto& channel = context.spec->inputChannels[ci]; auto& info = context.state->inputChannelInfos[ci]; - // If at least one channel is complete, we keep polling for the remaining - // stuff. - // FIXME: this is definitely not what we want, but - // it should get the analysis working. - if (info.state == InputChannelState::Completed) { - *context.wasActive = true; - } - if (info.state != InputChannelState::Completed && info.state != InputChannelState::Pull) { context.allDone = false; }