mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into trunk
This commit is contained in:
commit
1b23b2a1ca
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue