From e50b8a3a0da7579d5e9b583ddb2cb6b0142b327b Mon Sep 17 00:00:00 2001 From: kailixu Date: Sun, 24 Sep 2023 08:48:14 +0800 Subject: [PATCH] chore: make jenkins happy for community --- source/dnode/mnode/impl/src/mndDnode.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/dnode/mnode/impl/src/mndDnode.c b/source/dnode/mnode/impl/src/mndDnode.c index 95a8f873cb..bf6c90ead1 100644 --- a/source/dnode/mnode/impl/src/mndDnode.c +++ b/source/dnode/mnode/impl/src/mndDnode.c @@ -688,7 +688,9 @@ static int32_t mndProcessStatusReq(SRpcMsg *pReq) { _OVER: mndReleaseDnode(pMnode, pDnode); taosArrayDestroy(statusReq.pVloads); +#ifdef MAKE_JENKINS_HAPPY mndUpdClusterInfo(pReq); +#endif return code; } @@ -721,7 +723,9 @@ static int32_t mndProcessNotifyReq(SRpcMsg *pReq) { } } _OVER: +#ifdef ENTERPIRSE_UPDATED mndUpdClusterInfo(pReq); +#endif tFreeSNotifyReq(¬ifyReq); return code; }