fix invalid print

This commit is contained in:
yihaoDeng 2024-09-13 21:21:34 +08:00
parent 8031f196ad
commit ff60d50cbc
1 changed files with 1 additions and 1 deletions

View File

@ -3150,7 +3150,7 @@ static SCliConn* getConnFromHeapCache(SHashObj* pConnHeapCache, char* key) {
int32_t stateNum = taosHashGetSize(pConn->pQTable);
if (shouldSWitchToOtherConn(reqsNum, reqsSentOut, stateNum)) {
tDebug("conn %p has %d reqs, %d sentout and %s status in process, switch to other conn", pConn, reqsNum,
tDebug("conn %p has %d reqs, %d sentout and %d status in process, switch to other conn", pConn, reqsNum,
reqsSentOut, stateNum);
return NULL;
}