From f76c39889cb90358f06d4092bd6c9f8c717f3cfa Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 16 Nov 2022 08:22:11 +0100 Subject: [PATCH] IDEMPIERE-5013 set HikariCP initial pool size to 10 - as it was in c3p0 (#1564) --- .../META-INF/pool/server.default.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.compiere.db.postgresql.provider/META-INF/pool/server.default.properties b/org.compiere.db.postgresql.provider/META-INF/pool/server.default.properties index 02fc862ed5..eb45980018 100644 --- a/org.compiere.db.postgresql.provider/META-INF/pool/server.default.properties +++ b/org.compiere.db.postgresql.provider/META-INF/pool/server.default.properties @@ -42,7 +42,7 @@ connectionTimeout=60000 # recommend not setting this value and instead allowing HikariCP to act as a # fixed size connection pool. # Default: same as maximumPoolSize -#minimumIdle= +minimumIdle=10 # This property controls the maximum size that the pool is allowed to reach, # including both idle and in-use connections. Basically this value will determine