Merge pull request #28508 from taosdata/fix/TD-32681-monitor-test-ci-fail

fix: monitor test always failed
This commit is contained in:
Shengliang Guan 2024-10-28 14:19:17 +08:00 committed by GitHub
commit c08ab1cffe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,10 @@ class MonitorTest : public ::testing::Test {
monInit(&cfg); monInit(&cfg);
} }
static void TearDownTestSuite() { monCleanup(); } static void TearDownTestSuite() {
monCleanup();
taosMsleep(100);
}
public: public:
void SetUp() override {} void SetUp() override {}