This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/master by this push:
     new 7d323cc6 [POOL-430] Make 
AbandonedConfig.DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION public
7d323cc6 is described below

commit 7d323cc6f03ad3089dc98fa30e9259a018e147f3
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 10 13:18:55 2026 -0500

    [POOL-430] Make
    AbandonedConfig.DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION public
    
    Bump POM version to the next feature version: 2.14.0
---
 src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
index b03f12c8..01a5ed9b 100644
--- a/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
@@ -33,8 +33,10 @@ public class AbandonedConfig {
 
     /**
      * The 5 minutes Duration.
+     *
+     * @since 2.14.0
      */
-    private static final Duration DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION = 
Duration.ofMinutes(5);
+    public static final Duration DEFAULT_REMOVE_ABANDONED_TIMEOUT_DURATION = 
Duration.ofMinutes(5);
 
     /**
      * Creates a new instance with values from the given instance.

Reply via email to