This is an automated email from the ASF dual-hosted git repository.
struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git
The following commit(s) were added to refs/heads/master by this push:
new d3790f7 OPENJPA-2754 also move postgres config to dbcp2 maxTotal
d3790f7 is described below
commit d3790f70c7d8a0e7a85c1ad95730605c33c4d818
Author: Mark Struberg <[email protected]>
AuthorDate: Wed Jan 2 13:18:52 2019 +0100
OPENJPA-2754 also move postgres config to dbcp2 maxTotal
maxActive doesn't exist anymore. It is now maxTotal.
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index d0805ae..a0b5f9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -787,7 +787,7 @@
<!-- DBCP overrides -->
<dbcp.maxIdle>5</dbcp.maxIdle>
<dbcp.minIdle>0</dbcp.minIdle>
- <dbcp.maxActive>20</dbcp.maxActive>
+ <dbcp.maxTotal>20</dbcp.maxTotal>
<postgresql.server.version>11</postgresql.server.version>
</properties>