You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sn...@apache.org on 2020/05/19 14:36:24 UTC

[cassandra] branch trunk updated: Fix tools/bin/fqltool for all shells

This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/trunk by this push:
     new ec07cd7  Fix tools/bin/fqltool for all shells
ec07cd7 is described below

commit ec07cd7e76c93bf713618f381480f500f6c4e62f
Author: Robert Stupp <sn...@snazy.de>
AuthorDate: Tue May 19 07:00:41 2020 +0200

    Fix tools/bin/fqltool for all shells
    
    patch by Robert Stupp; reviewed by Mick Semb Wever and Eduard Tudenhöfner for CASSANDRA-15820
---
 CHANGES.txt       | 1 +
 tools/bin/fqltool | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index f430f5c..43aef72 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,5 @@
 4.0-alpha5
+ * Fix tools/bin/fqltool for all shells (CASSANDRA-15820)
  * Fix clearing of legacy size_estimates (CASSANDRA-15776)
  * Update port when reconnecting to pre-4.0 SSL storage (CASSANDRA-15727)
  * Only calculate dynamicBadnessThreshold once per loop in DynamicEndpointSnitch (CASSANDRA-15798)
diff --git a/tools/bin/fqltool b/tools/bin/fqltool
index a34128e..dc49e50 100755
--- a/tools/bin/fqltool
+++ b/tools/bin/fqltool
@@ -52,7 +52,7 @@ ARGS=""
 JVM_ARGS=""
 while true
 do
-  if [ ! $1 ]; then break; fi
+  if [ "x" = "x$1" ]; then break; fi
   case $1 in
     -D*)
       JVM_ARGS="$JVM_ARGS $1"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org