Skip to content
Snippets Groups Projects
Commit 9b061520 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

max number of connections for postgres reduced to 90, so it won't fill default...

max number of connections for postgres reduced to 90, so it won't fill default max connections number in postgres server configurtion
parent 73accf37
No related branches found
No related tags found
1 merge request!219Resolve "reduce number of connections in the pool"
Pipeline #
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<property name="jdbcUrl" value="${database.uri}" /> <property name="jdbcUrl" value="${database.uri}" />
<property name="user" value="${database.username}" /> <property name="user" value="${database.username}" />
<property name="password" value="${database.password}" /> <property name="password" value="${database.password}" />
<property name="maxPoolSize" value="100" /> <property name="maxPoolSize" value="90" />
<property name="maxStatements" value="5" /> <property name="maxStatements" value="5" />
<property name="minPoolSize" value="5" /> <property name="minPoolSize" value="5" />
</bean> </bean>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment