Merge branch 'cassandra-3.0' into cassandra-3.11

This commit is contained in:
Brandon Williams 2021-07-16 07:56:34 -05:00
commit b60f4fed33
3 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@
* Make sure sstables with moved starts are removed correctly in LeveledGenerations (CASSANDRA-16552)
* Upgrade jackson-databind to 2.9.10.8 (CASSANDRA-16462)
Merged from 3.0:
* Ensure java executable is on the path (CASSANDRA-14325)
* Make speculative retry parameter case-insensitive for backward compatibility with 2.1 (CASSANDRA-16467)
* Push digest mismatch exceptions to trace (CASSANDRA-14900)
* Handle correctly the exceptions thrown by custom QueryHandler constructors (CASSANDRA-16703)

View File

@ -98,7 +98,7 @@ if [ -n "$JAVA_HOME" ]; then
fi
done
else
JAVA=java
JAVA=`command -v java 2> /dev/null`
fi
if [ -z $JAVA ] ; then

View File

@ -36,7 +36,7 @@ fi
if [ -n "$JAVA_HOME" ]; then
JAVA="$JAVA_HOME/bin/java"
else
JAVA=java
JAVA=`command -v java 2> /dev/null`
fi
if [ -z "$CASSANDRA_CONF" -o -z "$CLASSPATH" ]; then