Skip to content

Commit d99370e

Browse files
committed
fix to decompress msgProperties
Signed-off-by: Emelia Lei <[email protected]>
1 parent 2db889c commit d99370e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/groups/bmq/bmqimp/bmqimp_brokersession.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3490,7 +3490,7 @@ void BrokerSession::processPushEvent(const bmqp::Event& event)
34903490
// Update stats
34913491
bdlma::LocalSequentialAllocator<1024> iteratorLsa(d_allocator_p);
34923492
bmqp::PushMessageIterator msgIterator(d_bufferFactory_p, &iteratorLsa);
3493-
event.loadPushMessageIterator(&msgIterator);
3493+
event.loadPushMessageIterator(&msgIterator, true);
34943494
if (BSLS_PERFORMANCEHINT_PREDICT_UNLIKELY(!msgIterator.isValid())) {
34953495
BSLS_PERFORMANCEHINT_UNLIKELY_HINT;
34963496
BALL_LOG_ERROR << id() << "Unable to process PUSH event "

0 commit comments

Comments
 (0)