From ddb501df408af59e213380263f3c519d11b89977 Mon Sep 17 00:00:00 2001 From: Dave Brosius Date: Thu, 22 Aug 2013 21:13:24 -0400 Subject: [PATCH] fix nodetool getendpoints when the key has a space in it patch by gdeangelis reviewed by dbrosius for CASSANDRA-4551 --- bin/nodetool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nodetool b/bin/nodetool index c60253020c..ef79f66b24 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