Skip to content

Commit

Permalink
DPL: do not run the check for the case data was not created nor dispa…
Browse files Browse the repository at this point in the history
…tched
  • Loading branch information
ktf authored and martenole committed Jan 18, 2024
1 parent a3ee554 commit 5e22763
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Framework/Core/src/CommonServices.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
LOGP(debug, "Data created out of band");
return;
}
if (didCreate == false && messageContext.didDispatch() == false) {
O2_SIGNPOST_ID_FROM_POINTER(cid, stream_context, service);
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "No data created");
return;
}
for (size_t ri = 0; ri < routes.size(); ++ri) {
if (stream->routeUserCreated[ri] == true) {
continue;
Expand Down

0 comments on commit 5e22763

Please sign in to comment.