We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55607cf commit 1e23267Copy full SHA for 1e23267
Framework/Core/src/CommonServices.cxx
@@ -403,11 +403,9 @@ o2::framework::ServiceSpec CommonServices::ccdbSupportSpec()
403
if (!service) {
404
return;
405
}
406
- if (pc.services().get<DeviceState>().streaming == StreamingState::EndOfStreaming) {
407
- if (pc.outputs().countDeviceOutputs(true) == 0) {
408
- LOGP(debug, "We are in EoS w/o outputs, do not automatically add DISTSUBTIMEFRAME to outgoing messages");
409
- return;
410
- }
+ if (pc.outputs().countDeviceOutputs(true) == 0) {
+ LOGP(debug, "We are w/o outputs, do not automatically add DISTSUBTIMEFRAME to outgoing messages");
+ return;
411
412
const auto ref = pc.inputs().getFirstValid(true);
413
const auto* dh = DataRefUtils::getHeader<o2::header::DataHeader*>(ref);
0 commit comments