fix: bad merge
This commit is contained in:
parent
d8479d7a0d
commit
0b8d3b056d
|
@ -184,8 +184,11 @@ int vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo) {
|
||||||
case TDMT_VND_CONSUME:
|
case TDMT_VND_CONSUME:
|
||||||
return tqProcessPollReq(pVnode->pTq, pMsg, pInfo->workerId);
|
return tqProcessPollReq(pVnode->pTq, pMsg, pInfo->workerId);
|
||||||
|
|
||||||
case TDMT_VND_TASK_RUN:
|
case TDMT_VND_TASK_RUN: {
|
||||||
return tqProcessTaskRunReq(pVnode->pTq, pMsg);
|
int32_t code = tqProcessTaskRunReq(pVnode->pTq, pMsg);
|
||||||
|
pMsg->pCont = NULL;
|
||||||
|
return code;
|
||||||
|
}
|
||||||
case TDMT_VND_TASK_DISPATCH:
|
case TDMT_VND_TASK_DISPATCH:
|
||||||
return tqProcessTaskDispatchReq(pVnode->pTq, pMsg);
|
return tqProcessTaskDispatchReq(pVnode->pTq, pMsg);
|
||||||
case TDMT_VND_TASK_RECOVER:
|
case TDMT_VND_TASK_RECOVER:
|
||||||
|
|
Loading…
Reference in New Issue