mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.2' into cassandra-3.0
This commit is contained in:
commit
7cb2ef0901
|
|
@ -58,6 +58,7 @@ Merged from 2.2:
|
|||
* Fix leak on skipped SSTables in sstableupgrade (CASSANDRA-12899)
|
||||
* Avoid blocking gossip during pending range calculation (CASSANDRA-12281)
|
||||
Merged from 2.1:
|
||||
* Use portable stderr for java error in startup (CASSANDRA-13211)
|
||||
* Fix Thread Leak in OutboundTcpConnection (CASSANDRA-13204)
|
||||
* Coalescing strategy can enter infinite loop (CASSANDRA-13159)
|
||||
* Upgrade netty version to fix memory leak with client encryption (CASSANDRA-13114)
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ else
|
|||
fi
|
||||
|
||||
if [ -z $JAVA ] ; then
|
||||
echo Unable to find java executable. Check JAVA_HOME and PATH environment variables. > /dev/stderr
|
||||
echo Unable to find java executable. Check JAVA_HOME and PATH environment variables. >&2
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue