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 <[email protected]> Authored: Wed Apr 15 12:46:09 2015 -0500 Committer: Tyler Hobbs <[email protected]> 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 = "<keyspace> <cfname> <key>", description = "The keyspace, the column family, and the key for which we need to find the endpoint") + @Arguments(usage = "<keyspace> <cfname> <key>", description = "The keyspace, the column family, and the partition key for which we need to find the endpoint") private List<String> args = new ArrayList<>(); @Override
