Merge branch '3.0' into enh/opt-transport

This commit is contained in:
yihaoDeng 2024-09-18 08:52:39 +08:00
parent 2db729583f
commit 4e1af260d1
1 changed files with 2 additions and 2 deletions

View File

@ -485,12 +485,12 @@ int32_t cliHandleState_mayHandleReleaseResp(SCliConn* conn, STransMsgHead* pHead
code = taosHashRemove(conn->pQTable, &qId, sizeof(qId)); code = taosHashRemove(conn->pQTable, &qId, sizeof(qId));
if (code != 0) { if (code != 0) {
tDebug("%s conn %p failed to release req %ld from conn", CONN_GET_INST_LABEL(conn), conn, qId); tDebug("%s conn %p failed to release req:%" PRId64 " from conn", CONN_GET_INST_LABEL(conn), conn, qId);
} }
code = taosHashRemove(pThrd->pIdConnTable, &qId, sizeof(qId)); code = taosHashRemove(pThrd->pIdConnTable, &qId, sizeof(qId));
if (code != 0) { if (code != 0) {
tDebug("%s conn %p failed to release req %ld from thrd ", CONN_GET_INST_LABEL(conn), conn, qId); tDebug("%s conn %p failed to release req:%" PRId64 " from thrd ", CONN_GET_INST_LABEL(conn), conn, qId);
} }
tDebug("%s %p reqToSend:%d, sentOut:%d", CONN_GET_INST_LABEL(conn), conn, transQueueSize(&conn->reqsToSend), tDebug("%s %p reqToSend:%d, sentOut:%d", CONN_GET_INST_LABEL(conn), conn, transQueueSize(&conn->reqsToSend),