From d4e24280e38a9a4afb366f16d589dd63b44a01dd Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Wed, 9 Oct 2024 21:47:51 +0800 Subject: [PATCH] add config --- source/libs/transport/src/transCli.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/libs/transport/src/transCli.c b/source/libs/transport/src/transCli.c index 938247766e..f11b34461d 100644 --- a/source/libs/transport/src/transCli.c +++ b/source/libs/transport/src/transCli.c @@ -422,14 +422,17 @@ void cliConnMayUpdateTimer(SCliConn* conn, int64_t timeout) { } void destroyCliConnQTable(SCliConn* conn) { - int32_t code = 0; - void* pIter = taosHashIterate(conn->pQTable, NULL); + SCliThrd* thrd = conn->hostThrd; + int32_t code = 0; + void* pIter = taosHashIterate(conn->pQTable, NULL); while (pIter != NULL) { int64_t* qid = taosHashGetKey(pIter, NULL); STransCtx* ctx = pIter; transCtxCleanup(ctx); pIter = taosHashIterate(conn->pQTable, pIter); + TAOS_UNUSED(taosHashRemove(thrd->pIdConnTable, qid, sizeof(*qid))); + transReleaseExHandle(transGetRefMgt(), *qid); transRemoveExHandle(transGetRefMgt(), *qid); } @@ -996,6 +999,7 @@ static int32_t cliCreateConn(SCliThrd* pThrd, SCliConn** pCliConn, char* ip, int char addr[TSDB_FQDN_LEN + 64] = {0}; CONN_CONSTRUCT_HASH_KEY(addr, ip, port); + conn->hostThrd = pThrd; conn->dstAddr = taosStrdup(addr); conn->ipStr = taosStrdup(ip); conn->port = port; @@ -1003,7 +1007,6 @@ static int32_t cliCreateConn(SCliThrd* pThrd, SCliConn** pCliConn, char* ip, int TAOS_CHECK_GOTO(TSDB_CODE_OUT_OF_MEMORY, &lino, _failed); } - conn->hostThrd = pThrd; conn->status = ConnNormal; conn->broken = false; QUEUE_INIT(&conn->q);