Skip to content

Commit 1071e77

Browse files
committed
DPL: fix missing return true in ToologyPolicy
1 parent dd12eda commit 1071e77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Framework/Core/src/TopologyPolicy.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ bool expendableDataDeps(DataProcessorSpec const& a, DataProcessorSpec const& b)
196196
if (sporadic) {
197197
O2_SIGNPOST_END(topology, sid, "expendableDataDeps", "%s is expendable. No inverse dependency from %s to %s. However the former has an occasioanl input => true.",
198198
a.name.c_str(), b.name.c_str(), a.name.c_str());
199+
return true;
199200
}
200201
O2_SIGNPOST_END(topology, sid, "expendableDataDeps", "%s is expendable. No inverse dependency from %s to %s => false.",
201202
a.name.c_str(), b.name.c_str(), a.name.c_str());

0 commit comments

Comments
 (0)