fix limit

This commit is contained in:
yihaoDeng 2024-10-24 07:41:36 +08:00
parent ebaef4a537
commit 410fb6c2c5
1 changed files with 1 additions and 1 deletions

View File

@ -2363,7 +2363,7 @@ static int32_t createThrdObj(void* trans, SCliThrd** ppThrd) {
}
}
pThrd->pool = createConnPool(4);
pThrd->pool = createConnPool(32);
if (pThrd->pool == NULL) {
code = terrno;
TAOS_CHECK_GOTO(terrno, NULL, _end);