File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
- #! /usr/ bin/bash
1
+ #! /bin/bash
2
2
3
3
# Licensed to the Apache Software Foundation (ASF) under one or more
4
4
# 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 {
202
202
DefaultMQPushConsumer::DefaultMQPushConsumer (const string &groupname)
203
203
: m_consumeFromWhere(CONSUME_FROM_LAST_OFFSET),
204
204
m_pOffsetStore (NULL ),
205
+ m_pRebalance(NULL ),
205
206
m_pPullAPIWrapper(NULL ),
207
+ m_consumerService(NULL ),
206
208
m_pMessageListener(NULL ),
207
209
m_consumeMessageBatchMaxSize(1 ),
208
- m_maxMsgCacheSize(1000 ) {
210
+ m_maxMsgCacheSize(1000 ),
211
+ m_pullmsgQueue(NULL ) {
209
212
// <!set default group name;
210
213
string gname = groupname.empty () ? DEFAULT_CONSUMER_GROUP : groupname;
211
214
setGroupName (gname);
You can’t perform that action at this time.
0 commit comments