You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2013/08/23 03:15:17 UTC

git commit: fix nodetool getendpoints when the key has a space in it patch by gdeangelis reviewed by dbrosius for CASSANDRA-4551

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 <db...@apache.org>
Authored: Thu Aug 22 21:13:24 2013 -0400
Committer: Dave Brosius <db...@apache.org>
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