We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa375f commit 459283dCopy full SHA for 459283d
vertx-sql-client/src/main/java/io/vertx/sqlclient/PoolOptions.java
@@ -118,6 +118,11 @@ public PoolOptions(PoolOptions other) {
118
maxWaitQueueSize = other.maxWaitQueueSize;
119
idleTimeout = other.idleTimeout;
120
idleTimeoutUnit = other.idleTimeoutUnit;
121
+ maxLifetime = other.maxLifetime;
122
+ maxLifetimeUnit = other.maxLifetimeUnit;
123
+ poolCleanerPeriod = other.poolCleanerPeriod;
124
+ connectionTimeout = other.connectionTimeout;
125
+ connectionTimeoutUnit = other.connectionTimeoutUnit;
126
shared= other.shared;
127
name = other.name;
128
eventLoopSize = other.eventLoopSize;
0 commit comments