mirror of https://github.com/apache/cassandra
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:
parent
17caa288c3
commit
ec07cd7e76
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue