We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e89a9b commit bb2b3dfCopy full SHA for bb2b3df
vertx-sql-client/src/main/java/io/vertx/sqlclient/PoolOptions.java
@@ -119,6 +119,11 @@ public PoolOptions(PoolOptions other) {
119
maxWaitQueueSize = other.maxWaitQueueSize;
120
idleTimeout = other.idleTimeout;
121
idleTimeoutUnit = other.idleTimeoutUnit;
122
+ maxLifetime = other.maxLifetime;
123
+ maxLifetimeUnit = other.maxLifetimeUnit;
124
+ poolCleanerPeriod = other.poolCleanerPeriod;
125
+ connectionTimeout = other.connectionTimeout;
126
+ connectionTimeoutUnit = other.connectionTimeoutUnit;
127
shared= other.shared;
128
name = other.name;
129
eventLoopSize = other.eventLoopSize;
0 commit comments