fix log
This commit is contained in:
parent
924e5bfe6c
commit
8cd362c8d0
|
@ -312,10 +312,8 @@ int32_t vnodeProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg, int64_t version, SRp
|
||||||
|
|
||||||
walApplyVer(pVnode->pWal, version);
|
walApplyVer(pVnode->pWal, version);
|
||||||
|
|
||||||
vInfo("vgId:%d, push msg begin", pVnode->config.vgId);
|
|
||||||
if (tqPushMsg(pVnode->pTq, pMsg->pCont, pMsg->contLen, pMsg->msgType, version) < 0) {
|
if (tqPushMsg(pVnode->pTq, pMsg->pCont, pMsg->contLen, pMsg->msgType, version) < 0) {
|
||||||
vError("vgId:%d, failed to push msg to TQ since %s", TD_VID(pVnode), tstrerror(terrno));
|
vError("vgId:%d, failed to push msg to TQ since %s", TD_VID(pVnode), tstrerror(terrno));
|
||||||
vInfo("vgId:%d, push msg end", pVnode->config.vgId);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
vInfo("vgId:%d, push msg end", pVnode->config.vgId);
|
vInfo("vgId:%d, push msg end", pVnode->config.vgId);
|
||||||
|
@ -886,8 +884,6 @@ static int32_t vnodeProcessSubmitReq(SVnode *pVnode, int64_t version, void *pReq
|
||||||
bool tbCreated = false;
|
bool tbCreated = false;
|
||||||
terrno = TSDB_CODE_SUCCESS;
|
terrno = TSDB_CODE_SUCCESS;
|
||||||
|
|
||||||
vDebug("vgId:%d %s start, version:%" PRId64 ", len:%d", TD_VID(pVnode), __func__, version);
|
|
||||||
|
|
||||||
pRsp->code = 0;
|
pRsp->code = 0;
|
||||||
pSubmitReq->version = version;
|
pSubmitReq->version = version;
|
||||||
statis.nBatchInsert = 1;
|
statis.nBatchInsert = 1;
|
||||||
|
|
Loading…
Reference in New Issue