Test/prevent server block on rate limit (#419)

* increase DB max connection to 50
This commit is contained in:
ZaydSkaff
2025-06-19 14:34:23 +03:00
committed by GitHub
parent c5dd5e28fd
commit aa9e90bf08

View File

@ -125,7 +125,7 @@ import { VisitorPasswordEntity } from '../modules/visitor-password/entities';
logger: typeOrmLogger,
extra: {
charset: 'utf8mb4',
max: 20, // set pool max size
max: 50, // set pool max size
idleTimeoutMillis: 5000, // close idle clients after 5 second
connectionTimeoutMillis: 12_000, // return an error after 11 second if connection could not be established
maxUses: 7500, // close (and replace) a connection after it has been used 7500 times (see below for discussion)