Remove pool size.

pull/35/head
Brett Wooldridge 11 years ago
parent c9f4598e53
commit ca526c2e87

@ -79,7 +79,7 @@ public final class HikariPool implements HikariPoolMBean
this.idleConnectionCount = new AtomicInteger();
this.awaitingConnection = new AtomicInteger();
this.backgroundFillQueued = new AtomicBoolean();
this.idleConnections = new LinkedBlockingQueue<IHikariConnectionProxy>(configuration.getMaximumPoolSize());
this.idleConnections = new LinkedBlockingQueue<IHikariConnectionProxy>();
this.jdbc4ConnectionTest = configuration.isJdbc4ConnectionTest();
this.leakDetectionThreshold = configuration.getLeakDetectionThreshold();

Loading…
Cancel
Save