From f2ebc9236c1311505a407ae443d77aa1a77be7d8 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Fri, 11 Oct 2024 14:38:57 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/3.0' into enh/opt-transport --- source/libs/transport/src/transCli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libs/transport/src/transCli.c b/source/libs/transport/src/transCli.c index ee7fe3e105..a51d75a108 100644 --- a/source/libs/transport/src/transCli.c +++ b/source/libs/transport/src/transCli.c @@ -3869,8 +3869,8 @@ int32_t transHeapBalance(SHeap* heap, SCliConn* p) { if (p->inHeap == 0 && heap == NULL || heap->heap == NULL) { return 0; } - if (heap->heap->nelts >= 64) { - tDebug("conn %p heap busy,heap size:%d", heap->heap->nelts); + if (heap->heap->nelts >= 32) { + tTrace("conn %p heap busy,heap size:%d", heap->heap->nelts); } heapRemove(heap->heap, &p->node); heapInsert(heap->heap, &p->node);