fix/TD-30106

This commit is contained in:
dmchen 2024-05-23 04:22:52 +00:00
parent ae7b3179a0
commit 5055dad3cf
1 changed files with 1 additions and 1 deletions

View File

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