Set maxIdle to maxActive by default to prevent warning on start when maxIdle > maxActive
Patch provided by Matt Passell
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@943032
13f79535-47bb-0310-9956-
ffa450edef68
protected String connectionProperties;
protected int initialSize = 10;
protected int maxActive = 100;
- protected int maxIdle = Integer.MAX_VALUE;
+ protected int maxIdle = maxActive;
protected int minIdle = initialSize;
protected int maxWait = 30000;
protected String validationQuery;