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 d1c3d58 commit 18586edCopy full SHA for 18586ed
pom.xml
@@ -11,7 +11,7 @@
11
</parent>
12
13
<artifactId>simple-object-pool</artifactId>
14
- <version>2.3.2</version>
+ <version>2.3.3</version>
15
<packaging>jar</packaging>
16
17
<properties>
src/main/java/today/bonfire/oss/sop/SimpleObjectPoolConfig.java
@@ -155,7 +155,7 @@ protected SimpleObjectPoolConfig(Builder builder) {
155
this.maxRetries = builder.maxRetries;
156
this.retryCreationDelay = builder.retryCreationDelay.toNanos();
157
this.waitingForObjectTimeout = builder.waitingForObjectTimeout.toNanos();
158
- poolName = builder.poolName;
+ this.poolName = builder.poolName;
159
}
160
161
public static Builder builder() {
0 commit comments