Fix ci problems.
This commit is contained in:
parent
40478a9bfa
commit
2abb383ec0
|
@ -69,7 +69,6 @@ int32_t dmStartStatusThread(SDnodeMgmt *pMgmt);
|
||||||
int32_t dmStartConfigThread(SDnodeMgmt *pMgmt);
|
int32_t dmStartConfigThread(SDnodeMgmt *pMgmt);
|
||||||
int32_t dmStartStatusInfoThread(SDnodeMgmt *pMgmt);
|
int32_t dmStartStatusInfoThread(SDnodeMgmt *pMgmt);
|
||||||
void dmStopStatusThread(SDnodeMgmt *pMgmt);
|
void dmStopStatusThread(SDnodeMgmt *pMgmt);
|
||||||
void dmStopConfigThread(SDnodeMgmt *pMgmt);
|
|
||||||
void dmStopStatusInfoThread(SDnodeMgmt *pMgmt);
|
void dmStopStatusInfoThread(SDnodeMgmt *pMgmt);
|
||||||
int32_t dmStartNotifyThread(SDnodeMgmt *pMgmt);
|
int32_t dmStartNotifyThread(SDnodeMgmt *pMgmt);
|
||||||
void dmStopNotifyThread(SDnodeMgmt *pMgmt);
|
void dmStopNotifyThread(SDnodeMgmt *pMgmt);
|
||||||
|
|
|
@ -52,7 +52,6 @@ static void dmStopMgmt(SDnodeMgmt *pMgmt) {
|
||||||
dmStopMonitorThread(pMgmt);
|
dmStopMonitorThread(pMgmt);
|
||||||
dmStopAuditThread(pMgmt);
|
dmStopAuditThread(pMgmt);
|
||||||
dmStopStatusThread(pMgmt);
|
dmStopStatusThread(pMgmt);
|
||||||
dmStopConfigThread(pMgmt);
|
|
||||||
dmStopStatusInfoThread(pMgmt);
|
dmStopStatusInfoThread(pMgmt);
|
||||||
#if defined(TD_ENTERPRISE)
|
#if defined(TD_ENTERPRISE)
|
||||||
dmStopNotifyThread(pMgmt);
|
dmStopNotifyThread(pMgmt);
|
||||||
|
|
|
@ -366,12 +366,6 @@ void dmStopStatusThread(SDnodeMgmt *pMgmt) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void dmStopConfigThread(SDnodeMgmt *pMgmt) {
|
|
||||||
if (taosCheckPthreadValid(pMgmt->configThread)) {
|
|
||||||
taosThreadClear(&pMgmt->configThread);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void dmStopStatusInfoThread(SDnodeMgmt *pMgmt) {
|
void dmStopStatusInfoThread(SDnodeMgmt *pMgmt) {
|
||||||
if (taosCheckPthreadValid(pMgmt->statusInfoThread)) {
|
if (taosCheckPthreadValid(pMgmt->statusInfoThread)) {
|
||||||
(void)taosThreadJoin(pMgmt->statusInfoThread, NULL);
|
(void)taosThreadJoin(pMgmt->statusInfoThread, NULL);
|
||||||
|
|
Loading…
Reference in New Issue