Increasing default max size of JNDI connection pool from 8 to 25. It just feels like a more reasonable default value.
parent
d688d24e7a
commit
70d948e7c8
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue