handle quit error

This commit is contained in:
yihaoDeng 2024-10-30 11:56:36 +08:00
parent 9f9b22e436
commit 989457969e
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ static void addConnToPool(void* pool, SCliConn* conn) {
}
SCliThrd* thrd = conn->hostThrd;
if (thrd->quit == false) {
if (thrd->quit == true) {
return;
}