Merge branch 'cassandra-3.0' into trunk

This commit is contained in:
Aleksey Yeschenko 2015-10-14 16:49:16 +01:00
commit 1b23b2a1ca
2 changed files with 15 additions and 0 deletions

View File

@ -4,6 +4,7 @@
3.0-rc2
* Fix TeeingAppender causing some logs to be truncated/empty (CASSANDRA-10447)
* Allow EACH_QUORUM for reads (CASSANDRA-9602)
* Fix potential ClassCastException while upgrading (CASSANDRA-10468)
* Fix NPE in MVs on update (CASSANDRA-10503)

View File

@ -76,4 +76,18 @@ public class TeeingAppender<E> extends UnsynchronizedAppenderBase<E> implements
return aai.iteratorForAppenders();
}
@Override
public void stop()
{
try
{
if (started)
detachAndStopAllAppenders();
}
finally
{
super.stop();
}
}
}