[td-225] remove an assert

This commit is contained in:
Haojun Liao 2020-06-08 18:16:23 +08:00
parent d459dd7f2a
commit cf0a90ceee
1 changed files with 0 additions and 1 deletions

View File

@ -321,7 +321,6 @@ void tscProcessMsgFromServer(SRpcMsg *rpcMsg, SRpcIpSet *pIpSet) {
} }
if (pRes->code == TSDB_CODE_SUCCESS && tscProcessMsgRsp[pCmd->command]) { if (pRes->code == TSDB_CODE_SUCCESS && tscProcessMsgRsp[pCmd->command]) {
assert(pRes->pRsp != NULL);
rpcMsg->code = (*tscProcessMsgRsp[pCmd->command])(pSql); rpcMsg->code = (*tscProcessMsgRsp[pCmd->command])(pSql);
} }