Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 81779 invoked from network); 5 Feb 2011 21:28:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Feb 2011 21:28:16 -0000 Received: (qmail 68420 invoked by uid 500); 5 Feb 2011 21:28:16 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 68399 invoked by uid 500); 5 Feb 2011 21:28:15 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 68391 invoked by uid 99); 5 Feb 2011 21:28:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Feb 2011 21:28:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Feb 2011 21:28:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 87C58238896F; Sat, 5 Feb 2011 21:27:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1067528 - /cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java Date: Sat, 05 Feb 2011 21:27:54 -0000 To: commits@cassandra.apache.org From: brandonwilliams@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110205212754.87C58238896F@eris.apache.org> Author: brandonwilliams Date: Sat Feb 5 21:27:54 2011 New Revision: 1067528 URL: http://svn.apache.org/viewvc?rev=1067528&view=rev Log: fix merge from 2072 Modified: cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java Modified: cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java URL: http://svn.apache.org/viewvc/cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java?rev=1067528&r1=1067527&r2=1067528&view=diff ============================================================================== --- cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java (original) +++ cassandra/trunk/src/java/org/apache/cassandra/gms/Gossiper.java Sat Feb 5 21:27:54 2011 @@ -430,9 +430,11 @@ public class Gossiper implements IFailur epState.setHasToken(true); else { - logger.info("FatClient " + endpoint + " has been silent for " + FatClientTimeout + "ms, removing from gossip"); if (!justRemovedEndpoints.containsKey(endpoint)) // if the node was decommissioned, it will have been removed but still appear as a fat client + { + logger.info("FatClient " + endpoint + " has been silent for " + FatClientTimeout + "ms, removing from gossip"); removeEndpoint(endpoint); // after quarantine justRemoveEndpoints will remove the state + } } }