This commit is contained in:
Haojun Liao 2020-10-18 02:24:29 +08:00
parent a0a274e8ba
commit 1e8461e66c
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ static void *dnodeProcessReadQueue(void *param) {
if (code == TSDB_CODE_QRY_HAS_RSP) {
dnodeSendRpcReadRsp(pVnode, pReadMsg, pReadMsg->rpcMsg.code);
} else { // code == TSDB_CODE_QRY_NOT_READY, do not return msg to client
assert(pReadMsg->rpcMsg.handle == NULL);
assert(pReadMsg->rpcMsg.handle == NULL || (pReadMsg->rpcMsg.handle != NULL && pReadMsg->rpcMsg.msgType == 5));
dnodeDispatchNonRspMsg(pVnode, pReadMsg, code);
}
}