From 4ad6addfb7b981211812418e9baa4f8f14337a15 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Sat, 12 Oct 2024 13:44:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/3.0' into enh/opt-transport --- source/libs/transport/src/transCli.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/libs/transport/src/transCli.c b/source/libs/transport/src/transCli.c index 9fa9285bfc..0b888e365d 100644 --- a/source/libs/transport/src/transCli.c +++ b/source/libs/transport/src/transCli.c @@ -488,8 +488,10 @@ int8_t cliMayRecycleConn(SCliConn* conn) { tstrerror(code)); return 1; } else { - tError("%s conn %p failed to remove conn from heap cache since %s", CONN_GET_INST_LABEL(conn), conn, - tstrerror(code)); + if (code != 0) { + tDebug("%s conn %p failed to remove conn from heap cache since %s", CONN_GET_INST_LABEL(conn), conn, + tstrerror(code)); + } } addConnToPool(pThrd->pool, conn); return 1;