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 ECF3317C58 for ; Wed, 15 Apr 2015 17:46:51 +0000 (UTC) Received: (qmail 14170 invoked by uid 500); 15 Apr 2015 17:46:51 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 14129 invoked by uid 500); 15 Apr 2015 17:46:51 -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 14117 invoked by uid 99); 15 Apr 2015 17:46:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Apr 2015 17:46:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9DB2EDFAF3; Wed, 15 Apr 2015 17:46:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tylerhobbs@apache.org To: commits@cassandra.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cassandra git commit: Improve nodetool getendpoints docs for pk param Date: Wed, 15 Apr 2015 17:46:51 +0000 (UTC) Repository: cassandra Updated Branches: refs/heads/cassandra-2.1 3c17ac6e1 -> dac54976a Improve nodetool getendpoints docs for pk param Patch by Philip Thompson; reviewed by Jeremiah Jordan for CASSANDRA-6458 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/dac54976 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/dac54976 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/dac54976 Branch: refs/heads/cassandra-2.1 Commit: dac54976ad133ca340ad19a2538105f84de7a2d6 Parents: 3c17ac6 Author: Philip Thompson Authored: Wed Apr 15 12:46:09 2015 -0500 Committer: Tyler Hobbs Committed: Wed Apr 15 12:46:09 2015 -0500 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ src/java/org/apache/cassandra/tools/NodeTool.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/dac54976/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 8872f62..0f6329a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,6 @@ 2.1.5 + * Improve nodetool getendpoints documentation about the partition + key parameter (CASSANDRA-6458) * Don't check other keyspaces for schema changes when an user-defined type is altered (CASSANDRA-9187) * Allow takeColumnFamilySnapshot to take a list of tables (CASSANDRA-8348) http://git-wip-us.apache.org/repos/asf/cassandra/blob/dac54976/src/java/org/apache/cassandra/tools/NodeTool.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/tools/NodeTool.java b/src/java/org/apache/cassandra/tools/NodeTool.java index 20cf567..2c913e0 100644 --- a/src/java/org/apache/cassandra/tools/NodeTool.java +++ b/src/java/org/apache/cassandra/tools/NodeTool.java @@ -1593,7 +1593,7 @@ public class NodeTool @Command(name = "getendpoints", description = "Print the end points that owns the key") public static class GetEndpoints extends NodeToolCmd { - @Arguments(usage = " ", description = "The keyspace, the column family, and the key for which we need to find the endpoint") + @Arguments(usage = " ", description = "The keyspace, the column family, and the partition key for which we need to find the endpoint") private List args = new ArrayList<>(); @Override