From 127fd3bdd22f9b50309516863dc037560b209518 Mon Sep 17 00:00:00 2001 From: Pan Wei <72057773+dapan1121@users.noreply.github.com> Date: Sun, 1 Sep 2024 18:09:11 +0800 Subject: [PATCH] Update schUtil.c --- source/libs/scheduler/src/schUtil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/scheduler/src/schUtil.c b/source/libs/scheduler/src/schUtil.c index 1af8080586..3f610ed387 100644 --- a/source/libs/scheduler/src/schUtil.c +++ b/source/libs/scheduler/src/schUtil.c @@ -251,7 +251,7 @@ int32_t schUpdateHbConnection(SQueryNodeEpId *epId, SSchTrans *trans) { hb = taosHashGet(schMgmt.hbConnections, epId, sizeof(SQueryNodeEpId)); if (NULL == hb) { SCH_UNLOCK(SCH_READ, &schMgmt.hbLock); - atomic_add_fetch_64(&schMgmt.stat.runtime.hbConnNotFound, 1); + (void)atomic_add_fetch_64(&schMgmt.stat.runtime.hbConnNotFound, 1); return TSDB_CODE_SUCCESS; }