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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org