fix compile
This commit is contained in:
parent
b59a82225e
commit
f2bc000482
|
@ -28,9 +28,6 @@ void mndCleanupSubscribe(SMnode *pMnode);
|
||||||
SMqSubscribeObj *mndAcquireSubscribe(SMnode *pMnode, char *CGroup, char *topicName);
|
SMqSubscribeObj *mndAcquireSubscribe(SMnode *pMnode, char *CGroup, char *topicName);
|
||||||
void mndReleaseSubscribe(SMnode *pMnode, SMqSubscribeObj *pSub);
|
void mndReleaseSubscribe(SMnode *pMnode, SMqSubscribeObj *pSub);
|
||||||
|
|
||||||
SSdbRaw *mndSubscribeActionEncode(SMqSubscribeObj *pSub);
|
|
||||||
SSdbRow *mndSubscribeActionDecode(SSdbRaw *pRaw);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -377,9 +377,9 @@ static int32_t mndProcessDoRebalanceMsg(SMnodeMsg *pMsg) {
|
||||||
|
|
||||||
// send msg to vnode
|
// send msg to vnode
|
||||||
// log rebalance statistics
|
// log rebalance statistics
|
||||||
/*SSdbRaw *pSubRaw = mndSubscribeActionEncode(pSub);*/
|
SSdbRaw *pSubRaw = mndSubActionEncode(pSub);
|
||||||
/*sdbSetRawStatus(pSubRaw, SDB_STATUS_READY);*/
|
sdbSetRawStatus(pSubRaw, SDB_STATUS_READY);
|
||||||
/*mndTransAppendRedolog(pTrans, pSubRaw);*/
|
mndTransAppendRedolog(pTrans, pSubRaw);
|
||||||
}
|
}
|
||||||
mndReleaseSubscribe(pMnode, pSub);
|
mndReleaseSubscribe(pMnode, pSub);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue