File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class StfToDplAdapter : public ISubTimeFrameVisitor
4242 }
4343
4444 if (getenv (" DATADIST_NEW_DPL_CHAN" )) {
45- IDDLOG (" Inspection of DPL messages is enabled " );
45+ IDDLOG (" StfToDplAdapter: sending reduced-header split-payload messages. " );
4646 mReducedHdr = true ;
4747 }
4848 }
Original file line number Diff line number Diff line change @@ -61,11 +61,13 @@ void IovSerializer::visit(SubTimeFrame& pStf)
6161
6262 // add the data
6363 for (auto &lDataMsg : lStfDataIter.mDataParts ) {
64+ (void ) lDataIovIdx;
65+ #if 0 // Not needed for FairMQ channels
6466 auto lDataMeta = mIovHeader.add_stf_data_iov();
6567 lDataMeta->set_iov_idx(lDataIovIdx++);
6668 lDataMeta->set_iov_start(0);
6769 lDataMeta->set_iov_size(lDataMsg->GetSize());
68-
70+ # endif
6971 mData .push_back (std::move (lDataMsg));
7072 }
7173 }
You can’t perform that action at this time.
0 commit comments