From 9b061520a9bf3b20a3f7c14769aa57c1227e87fa Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 13 Mar 2018 16:17:22 +0100 Subject: [PATCH] max number of connections for postgres reduced to 90, so it won't fill default max connections number in postgres server configurtion --- persist/src/main/resources/dataSource.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persist/src/main/resources/dataSource.xml b/persist/src/main/resources/dataSource.xml index e6551f4fb1..96e982f72a 100644 --- a/persist/src/main/resources/dataSource.xml +++ b/persist/src/main/resources/dataSource.xml @@ -17,7 +17,7 @@ <property name="jdbcUrl" value="${database.uri}" /> <property name="user" value="${database.username}" /> <property name="password" value="${database.password}" /> - <property name="maxPoolSize" value="100" /> + <property name="maxPoolSize" value="90" /> <property name="maxStatements" value="5" /> <property name="minPoolSize" value="5" /> </bean> -- GitLab