fix limit

This commit is contained in:
yihaoDeng 2024-10-24 08:04:17 +08:00
parent 2630987e5e
commit eff6314141
1 changed files with 1 additions and 1 deletions

View File

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