mirror of https://github.com/apache/cassandra
Ninja fix CASSANDRA-16225 and update changes.
This commit is contained in:
parent
6baeb9247b
commit
2bcbd92a25
|
|
@ -1,4 +1,5 @@
|
|||
3.0.24:
|
||||
* Synchronize transaction logs for JBOD (CASSANDRA-16225)
|
||||
* Fix the counting of cells per partition (CASSANDRA-16259)
|
||||
* Fix serial read/non-applying CAS linearizability (CASSANDRA-12126)
|
||||
* Avoid potential NPE in JVMStabilityInspector (CASSANDRA-16294)
|
||||
|
|
|
|||
|
|
@ -151,7 +151,10 @@ class LogTransaction extends Transactional.AbstractTransactional implements Tran
|
|||
*/
|
||||
void untrackNew(SSTable table)
|
||||
{
|
||||
txnFile.remove(table);
|
||||
synchronized (lock)
|
||||
{
|
||||
txnFile.remove(table);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue