Skip to content

Commit 18586ed

Browse files
pool name issue plus version bump (#8)
1 parent d1c3d58 commit 18586ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212

1313
<artifactId>simple-object-pool</artifactId>
14-
<version>2.3.2</version>
14+
<version>2.3.3</version>
1515
<packaging>jar</packaging>
1616

1717
<properties>

src/main/java/today/bonfire/oss/sop/SimpleObjectPoolConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ protected SimpleObjectPoolConfig(Builder builder) {
155155
this.maxRetries = builder.maxRetries;
156156
this.retryCreationDelay = builder.retryCreationDelay.toNanos();
157157
this.waitingForObjectTimeout = builder.waitingForObjectTimeout.toNanos();
158-
poolName = builder.poolName;
158+
this.poolName = builder.poolName;
159159
}
160160

161161
public static Builder builder() {

0 commit comments

Comments
 (0)