fix(sync): delete memory after optimized
This commit is contained in:
parent
f0f64cfccc
commit
6cabe5847e
|
@ -199,7 +199,6 @@ int32_t syncNodeAppendEntriesPeersSnapshot2(SSyncNode* pSyncNode) {
|
||||||
|
|
||||||
// send msg
|
// send msg
|
||||||
syncNodeAppendEntriesBatch(pSyncNode, pDestId, pMsg);
|
syncNodeAppendEntriesBatch(pSyncNode, pDestId, pMsg);
|
||||||
syncAppendEntriesBatchDestroy(pMsg);
|
|
||||||
|
|
||||||
// speed up
|
// speed up
|
||||||
if (pMsg->dataCount > 0 && pSyncNode->commitIndex - pMsg->prevLogIndex > SYNC_SLOW_DOWN_RANGE) {
|
if (pMsg->dataCount > 0 && pSyncNode->commitIndex - pMsg->prevLogIndex > SYNC_SLOW_DOWN_RANGE) {
|
||||||
|
@ -216,6 +215,8 @@ int32_t syncNodeAppendEntriesPeersSnapshot2(SSyncNode* pSyncNode) {
|
||||||
} while (0);
|
} while (0);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
syncAppendEntriesBatchDestroy(pMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue