Increasing default max size of JNDI connection pool from 8 to 25. It just feels like a more reasonable default value.

pull/31/head
Mitchell Bösecke 2023-10-26 16:15:10 -06:00
parent d688d24e7a
commit 70d948e7c8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
url="jdbc:postgresql://${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}" url="jdbc:postgresql://${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}"
username="${POSTGRES_USERNAME}" username="${POSTGRES_USERNAME}"
password="${POSTGRES_PASSWORD}" password="${POSTGRES_PASSWORD}"
maxTotal="8" maxTotal="25"
initialSize="0" initialSize="0"
minIdle="0" minIdle="0"
maxIdle="8" maxIdle="8"