[TD-2710]<fix>: fix deadlock with batch create table

This commit is contained in:
Minglei Jin 2021-01-13 19:28:15 +08:00
parent a67f7504df
commit e7af585031
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ static void rpcProcessRetryTimer(void *param, void *tmrId) {
pConn->pContext->code = TSDB_CODE_RPC_NETWORK_UNAVAIL;
pConn->pContext->pConn = NULL;
pConn->pReqMsg = NULL;
taosTmrStart(rpcProcessConnError, 0, pConn->pContext, pRpc->tmrCtrl);
taosTmrStart(rpcProcessConnError, 1, pConn->pContext, pRpc->tmrCtrl);
rpcReleaseConn(pConn);
}
}