Author: kfujino Date: Wed Dec 4 05:13:26 2013 New Revision: 1547711 URL: http://svn.apache.org/r1547711 Log: If ping message fails, prevent the wrong timeout detection of normal member that is no failure members.
Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java?rev=1547711&r1=1547710&r2=1547711&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java Wed Dec 4 05:13:26 2013 @@ -274,6 +274,7 @@ public abstract class AbstractReplicated for (FaultyMember faultyMember : faultyMembers) { memberDisappeared(faultyMember.getMember()); } + throw ce; } } //update our map of members, expire some if we didn't receive a ping back 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=1547711&r1=1547710&r2=1547711&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Wed Dec 4 05:13:26 2013 @@ -290,6 +290,10 @@ <add> Add log message of session relocation when member disappeared. (kfujino) </add> + <fix> + If ping message fails, prevent wrong timeout detection of normal member + that is no failure members. (kfujino) + </fix> </changelog> </subsection> <subsection name="Web applications"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org