fix(db): limit Hikari connection pool to prevent "too many clients already"

This commit is contained in:
Pablo de la Torre Jamardo 2025-09-19 16:16:54 +02:00
parent fea733f990
commit 8fa2845220

View File

@ -24,6 +24,9 @@ spring:
username: ${DB_USER:postgres}
password: ${DB_PASSWORD:postgres}
driver-class-name: org.postgresql.Driver
hikari:
maximum-pool-size: 20
minimum-idle: 5
jpa:
hibernate: