Merge pull request #25897 from taosdata/fix/TD-30106-2-3.0

fix/TD-30106
This commit is contained in:
Hongze Cheng 2024-05-23 17:12:00 +08:00 committed by GitHub
commit 987d3d84f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ bool TestServer::Start() {
taosThreadAttrSetDetachState(&thAttr, PTHREAD_CREATE_JOINABLE);
taosThreadCreate(&threadId, &thAttr, serverLoop, this);
taosThreadAttrDestroy(&thAttr);
taosMsleep(2100);
taosMsleep(10000);
return runnning;
}