Merge branch 'cassandra-3.11' into trunk

This commit is contained in:
Jason Brown 2018-12-03 05:13:50 -08:00
commit f54ac59ac7
2 changed files with 2 additions and 1 deletions

View File

@ -334,6 +334,7 @@
3.11.4
* Make stop-server.bat wait for Cassandra to terminate (CASSANDRA-14829)
* Correct sstable sorting for garbagecollect and levelled compaction (CASSANDRA-14870)
Merged from 3.0:
* Netty epoll IOExceptions caused by unclean client disconnects being logged at INFO (CASSANDRA-14909)

View File

@ -38,7 +38,7 @@ FOR /F "tokens=2 delims= " %%A IN ('TASKLIST /FI ^"WINDOWTITLE eq %rand%^" /NH')
REM Start with /B -> the control+c event we generate in stop-server.ps1 percolates
REM up and hits this external batch file if we call powershell directly.
start /B powershell /file "%CASSANDRA_HOME%/bin/stop-server.ps1" -batchpid %PID% %*
start /WAIT /B powershell /file "%CASSANDRA_HOME%/bin/stop-server.ps1" -batchpid %PID% %*
goto finally
REM -----------------------------------------------------------------------------