Author: kfujino
Date: Wed Aug 31 07:56:23 2016
New Revision: 1758540
URL: http://svn.apache.org/viewvc?rev=1758540&view=rev
Log:
Additional fix for BZ60043.
Add log message of when returning the connection that has been marked suspect.
Modified:
tomcat/tc7.0.x/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
Modified:
tomcat/tc7.0.x/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java?rev=1758540&r1=1758539&r2=1758540&view=diff
==============================================================================
---
tomcat/tc7.0.x/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
(original)
+++
tomcat/tc7.0.x/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
Wed Aug 31 07:56:23 2016
@@ -889,7 +889,12 @@ public class ConnectionPool {
if (con != null) {
try {
con.lock();
-
+ if (con.isSuspect()) {
+ if (poolProperties.isLogAbandoned() &&
log.isInfoEnabled()) {
+ log.info("Connection(" + con + ") that has been marked
suspect was returned."
+ + " The processing time is " +
(System.currentTimeMillis()-con.getTimestamp()) + " ms.");
+ }
+ }
if (busy.remove(con)) {
if (!shouldClose(con,PooledConnection.VALIDATE_RETURN)) {
Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1758540&r1=1758539&r2=1758540&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Wed Aug 31 07:56:23 2016
@@ -288,6 +288,10 @@
without removing connection when the <code>removeAbandoned</code> is
disabled. (kfujino)
</fix>
+ <fix>
+ Add log message of when returning the connection that has been marked
+ suspect. (kfujino)
+ </fix>
</changelog>
</subsection>
<subsection name="Other">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]