From 87ac34327b780c9ea9e4fd8d207d41061791dd63 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Wed, 11 Mar 2020 12:57:35 +0800 Subject: [PATCH] fix two few arguments in tudp.c --- src/rpc/src/tudp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rpc/src/tudp.c b/src/rpc/src/tudp.c index 82d4e420e4..1b8fd14b80 100644 --- a/src/rpc/src/tudp.c +++ b/src/rpc/src/tudp.c @@ -481,7 +481,8 @@ void *taosInitUdpConnection(char *ip, uint16_t port, char *label, int threads, v sprintf(udplabel, "%s.b", label); pSet->tmrCtrl = taosTmrInit(RPC_MAX_UDP_CONNS * threads, 5, 5000, udplabel); if (pSet->tmrCtrl == NULL) { - tError("%s failed to initialize tmrCtrl") taosCleanUpUdpConnection(pSet); + tError("%s failed to initialize tmrCtrl", label); + taosCleanUpUdpConnection(pSet); return NULL; } // } -- GitLab