fix no resp error

This commit is contained in:
yihaoDeng 2022-09-06 19:16:56 +08:00
parent d1755fad24
commit 6c40af0059
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ void cliHandleExceptImpl(SCliConn* pConn, int32_t code) {
continue;
}
}
if (cliAppCb(pConn, &transMsg, pMsg) != 0) {
if (!REQUEST_NO_RESP(&pMsg->msg) && cliAppCb(pConn, &transMsg, pMsg) != 0) {
return;
}
destroyCmsg(pMsg);