fix case issue
This commit is contained in:
parent
e8a3a03952
commit
9b70420b3c
|
@ -515,13 +515,13 @@ void* consumeThreadFunc(void* param) {
|
|||
if (err) {
|
||||
pError("tmq_unsubscribe() fail, reason: %s\n", tmq_err2str(err));
|
||||
pInfo->consumeMsgCnt = -1;
|
||||
return NULL;
|
||||
//return NULL;
|
||||
}
|
||||
|
||||
err = tmq_consumer_close(pInfo->tmq);
|
||||
if (err) {
|
||||
pError("tmq_consumer_close() fail, reason: %s\n", tmq_err2str(err));
|
||||
exit(-1);
|
||||
//exit(-1);
|
||||
}
|
||||
pInfo->tmq = NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue