mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into cassandra-2.2
This commit is contained in:
commit
15b0bd6d03
|
|
@ -10,6 +10,7 @@
|
|||
* 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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
;;
|
||||
-D)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue