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 2014/04/04 04:38:51 UTC

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

Author: kfujino
Date: Fri Apr  4 02:38:51 2014
New Revision: 1584507

URL: http://svn.apache.org/r1584507
Log:
Set null rather than this.

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=1584507&r1=1584506&r2=1584507&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java (original)
+++ tomcat/trunk/java/org/apache/catalina/ha/tcp/SimpleTcpCluster.java Fri Apr  4 02:38:51 2014
@@ -597,7 +597,7 @@ public class SimpleTcpCluster extends Li
                         + " with class=" + valve.getClass().getName());
             if (valve != null) {
                 container.getPipeline().removeValve(valve);
-                valve.setCluster(this);
+                valve.setCluster(null);
             }
         }
     }



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