Merge branch 'cassandra-3.0' into trunk

This commit is contained in:
Yuki Morishita 2016-02-17 10:27:01 -06:00
commit 7871c36e36
3 changed files with 3 additions and 2 deletions

View File

@ -50,6 +50,7 @@ Merged from 2.2:
* Fix paging on DISTINCT queries repeats result when first row in partition changes
(CASSANDRA-10010)
Merged from 2.1:
* Use logback setting for 'cassandra -v' command (CASSANDRA-10767)
* Fix sstableloader to unthrottle streaming by default (CASSANDRA-9714)
* Fix incorrect warning in 'nodetool status' (CASSANDRA-10176)
* Properly release sstable ref when doing offline scrub (CASSANDRA-10697)

View File

@ -231,7 +231,7 @@ while true; do
exit 0
;;
-v)
"$JAVA" -cp "$CLASSPATH" org.apache.cassandra.tools.GetVersion
"$JAVA" -cp "$CLASSPATH" "-Dlogback.configurationFile=logback-tools.xml" org.apache.cassandra.tools.GetVersion
exit 0
;;
-R)

View File

@ -184,7 +184,7 @@ Function PrintVersion()
$pinfo = New-Object System.Diagnostics.ProcessStartInfo
$pinfo.FileName = "$env:JAVA_BIN"
$pinfo.UseShellExecute = $false
$pinfo.Arguments = "-cp $env:CLASSPATH org.apache.cassandra.tools.GetVersion"
$pinfo.Arguments = "-Dlogback.configurationFile=logback-tools.xml -cp $env:CLASSPATH org.apache.cassandra.tools.GetVersion"
$p = New-Object System.Diagnostics.Process
$p.StartInfo = $pinfo
$p.Start() | Out-Null