From ec07cd7e76c93bf713618f381480f500f6c4e62f Mon Sep 17 00:00:00 2001 From: Robert Stupp Date: Tue, 19 May 2020 07:00:41 +0200 Subject: [PATCH] Fix tools/bin/fqltool for all shells MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 f430f5c52a..43aef72402 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 a34128ed83..dc49e50246 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"