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 04D6610FB9 for ; Fri, 23 Aug 2013 01:15:18 +0000 (UTC) Received: (qmail 54894 invoked by uid 500); 23 Aug 2013 01:15:17 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 54876 invoked by uid 500); 23 Aug 2013 01:15:17 -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 54868 invoked by uid 99); 23 Aug 2013 01:15:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Aug 2013 01:15:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A39248C34E6; Fri, 23 Aug 2013 01:15:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dbrosius@apache.org To: commits@cassandra.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: fix nodetool getendpoints when the key has a space in it patch by gdeangelis reviewed by dbrosius for CASSANDRA-4551 Date: Fri, 23 Aug 2013 01:15:17 +0000 (UTC) Updated Branches: refs/heads/cassandra-1.2 39066b722 -> ddb501df4 fix nodetool getendpoints when the key has a space in it patch by gdeangelis reviewed by dbrosius for CASSANDRA-4551 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ddb501df Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ddb501df Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ddb501df Branch: refs/heads/cassandra-1.2 Commit: ddb501df408af59e213380263f3c519d11b89977 Parents: 39066b7 Author: Dave Brosius Authored: Thu Aug 22 21:13:24 2013 -0400 Committer: Dave Brosius Committed: Thu Aug 22 21:13:24 2013 -0400 ---------------------------------------------------------------------- bin/nodetool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/ddb501df/bin/nodetool ---------------------------------------------------------------------- diff --git a/bin/nodetool b/bin/nodetool index c602530..ef79f66 100755 --- a/bin/nodetool +++ b/bin/nodetool @@ -59,6 +59,6 @@ esac -Xmx32m \ -Dlog4j.configuration=log4j-tools.properties \ -Dstorage-config="$CASSANDRA_CONF" \ - org.apache.cassandra.tools.NodeCmd $@ + org.apache.cassandra.tools.NodeCmd ${1+"$@"} # vi:ai sw=4 ts=4 tw=0 et