This is an automated email from the ASF dual-hosted git repository. lihan pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new f1e571a9ef Increment ReleaseIdle Counter when testAllIdle releases them f1e571a9ef is described below commit f1e571a9ef3026e594c1fbe0fbba3b550f5a02ed Author: Arun Chaitanya Miriappalli <chaitan64a...@gmail.com> AuthorDate: Fri Feb 14 15:39:14 2020 +0800 Increment ReleaseIdle Counter when testAllIdle releases them --- .../src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java b/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java index 702589fad5..aa8f8154bf 100644 --- a/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java +++ b/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java @@ -1202,6 +1202,7 @@ public class ConnectionPool { release = !reconnectIfExpired(con) || !con.validate(PooledConnection.VALIDATE_IDLE); } if (release) { + releasedIdleCount.incrementAndGet(); idle.remove(con); release(con); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org