Fix tools/bin/fqltool for all shells

patch by Robert Stupp; reviewed by Mick Semb Wever and Eduard Tudenhöfner for CASSANDRA-15820
This commit is contained in:
Robert Stupp 2020-05-19 07:00:41 +02:00
parent 17caa288c3
commit ec07cd7e76
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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"