You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kf...@apache.org on 2013/11/06 09:44:01 UTC

svn commit: r1539270 - /tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java

Author: kfujino
Date: Wed Nov  6 08:44:00 2013
New Revision: 1539270

URL: http://svn.apache.org/r1539270
Log:
Correct stop failure log of cluster. Failure cause is not only Valve.

Modified:
    tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java

Modified: tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java?rev=1539270&r1=1539269&r2=1539270&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java (original)
+++ tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Wed Nov  6 08:44:00 2013
@@ -653,7 +653,7 @@ public class SimpleTcpCluster extends Li
             channel.removeMembershipListener(this);
             this.unregisterClusterValve();
         } catch (Exception x) {
-            log.error("Unable to stop cluster valve.", x);
+            log.error("Unable to stop cluster.", x);
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org