refactor(sync): delete assert, call FpCommitCb when multi replica
This commit is contained in:
parent
ebc17283de
commit
372d26f74b
|
@ -2462,11 +2462,36 @@ int32_t syncNodeOnClientRequest(SSyncNode* ths, SyncClientRequest* pMsg, SyncInd
|
||||||
} else {
|
} else {
|
||||||
syncEntryDestory(pEntry);
|
syncEntryDestory(pEntry);
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// del resp mgr, call FpCommitCb
|
// del resp mgr, call FpCommitCb
|
||||||
ASSERT(0);
|
|
||||||
|
SRpcMsg rpcMsg = {0};
|
||||||
|
syncClientRequest2RpcMsg(pMsg, &rpcMsg);
|
||||||
|
|
||||||
|
SFsmCbMeta cbMeta = {
|
||||||
|
.index = pEntry->index,
|
||||||
|
.lastConfigIndex = SYNC_INDEX_INVALID,
|
||||||
|
.isWeak = pEntry->isWeak,
|
||||||
|
.code = -1,
|
||||||
|
.state = ths->state,
|
||||||
|
.seqNum = pEntry->seqNum,
|
||||||
|
.term = pEntry->term,
|
||||||
|
.currentTerm = ths->pRaftStore->currentTerm,
|
||||||
|
.flag = 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
syncRespMgrGetAndDel(ths->pSyncRespMgr, cbMeta.seqNum, &rpcMsg.info);
|
||||||
|
ths->pFsm->FpCommitCb(ths->pFsm, &rpcMsg, &cbMeta);
|
||||||
|
|
||||||
|
if (h) {
|
||||||
|
taosLRUCacheRelease(ths->pLogStore->pCache, h, false);
|
||||||
|
} else {
|
||||||
|
syncEntryDestory(pEntry);
|
||||||
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue