File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1- #! /usr/ bin/bash
1+ #! /bin/bash
22
33# Licensed to the Apache Software Foundation (ASF) under one or more
44# contributor license agreements. See the NOTICE file distributed with
Original file line number Diff line number Diff line change @@ -202,10 +202,13 @@ namespace rocketmq {
202202 DefaultMQPushConsumer::DefaultMQPushConsumer (const string &groupname)
203203 : m_consumeFromWhere(CONSUME_FROM_LAST_OFFSET),
204204 m_pOffsetStore (NULL ),
205+ m_pRebalance(NULL ),
205206 m_pPullAPIWrapper(NULL ),
207+ m_consumerService(NULL ),
206208 m_pMessageListener(NULL ),
207209 m_consumeMessageBatchMaxSize(1 ),
208- m_maxMsgCacheSize(1000 ) {
210+ m_maxMsgCacheSize(1000 ),
211+ m_pullmsgQueue(NULL ) {
209212 // <!set default group name;
210213 string gname = groupname.empty () ? DEFAULT_CONSUMER_GROUP : groupname;
211214 setGroupName (gname);
You can’t perform that action at this time.
0 commit comments