Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4D50D108DE for ; Tue, 27 May 2014 23:14:50 +0000 (UTC) Received: (qmail 44686 invoked by uid 500); 27 May 2014 23:14:50 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 44555 invoked by uid 500); 27 May 2014 23:14:50 -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 44540 invoked by uid 99); 27 May 2014 23:14:50 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 May 2014 23:14:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D7E4F8357FA; Tue, 27 May 2014 23:14:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brandonwilliams@apache.org To: commits@cassandra.apache.org Date: Tue, 27 May 2014 23:14:50 -0000 Message-Id: In-Reply-To: <1fc928059b8d4537a1181937c92668b6@git.apache.org> References: <1fc928059b8d4537a1181937c92668b6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [02/10] git commit: fix typo fix typo Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/4e67631e Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/4e67631e Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/4e67631e Branch: refs/heads/cassandra-2.0 Commit: 4e67631ef84464ee4a1c141719521e835ddcd529 Parents: de1f7ee Author: Brandon Williams Authored: Tue May 27 18:11:38 2014 -0500 Committer: Brandon Williams Committed: Tue May 27 18:11:38 2014 -0500 ---------------------------------------------------------------------- src/java/org/apache/cassandra/service/StorageService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/4e67631e/src/java/org/apache/cassandra/service/StorageService.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/service/StorageService.java b/src/java/org/apache/cassandra/service/StorageService.java index 9a6e67a..8e7c073 100644 --- a/src/java/org/apache/cassandra/service/StorageService.java +++ b/src/java/org/apache/cassandra/service/StorageService.java @@ -739,7 +739,7 @@ public class StorageService extends NotificationBroadcasterSupport implements IE if (existing != null) { if (Gossiper.instance.getEndpointStateForEndpoint(existing).getUpdateTimestamp() > (System.currentTimeMillis() - delay)) - throw new UnsupportedOperationException("Cannnot replace a live node... "); + throw new UnsupportedOperationException("Cannot replace a live node... "); current.add(existing); } else