Skip to content

Commit 5e22763

Browse files
ktfmartenole
authored andcommitted
DPL: do not run the check for the case data was not created nor dispatched
1 parent a3ee554 commit 5e22763

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Framework/Core/src/CommonServices.cxx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,11 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
197197
LOGP(debug, "Data created out of band");
198198
return;
199199
}
200+
if (didCreate == false && messageContext.didDispatch() == false) {
201+
O2_SIGNPOST_ID_FROM_POINTER(cid, stream_context, service);
202+
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "No data created");
203+
return;
204+
}
200205
for (size_t ri = 0; ri < routes.size(); ++ri) {
201206
if (stream->routeUserCreated[ri] == true) {
202207
continue;

0 commit comments

Comments
 (0)