From 584c16c8faa68d3c610bda3ef0123dd7239b01be Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Sat, 23 Jan 2021 14:27:00 +0000 Subject: [PATCH] fixbug dnode exit --- src/client/src/tscSystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscSystem.c b/src/client/src/tscSystem.c index fe1c45bd39..cb392649a2 100644 --- a/src/client/src/tscSystem.c +++ b/src/client/src/tscSystem.c @@ -65,7 +65,7 @@ void tscReleaseRpc(void *param) { return; } pthread_mutex_lock(&rpcObjMutex); - taosCacheRelease(tscRpcCache, (void *)¶m, false); + taosCacheRelease(tscRpcCache, (void *)¶m, true); pthread_mutex_unlock(&rpcObjMutex); } -- GitLab