mirror of https://github.com/apache/cassandra
Ensure thread-safety for CommitLogArchiver in CommitLog
patch by Stefan Miklosovic; reviewed by Caleb Rackliffe for CASSANDRA-19960
This commit is contained in:
parent
bf8870f763
commit
63cad45bfc
|
|
@ -1,4 +1,5 @@
|
|||
4.0.15
|
||||
* Ensure thread-safety for CommitLogArchiver in CommitLog (CASSANDRA-19960)
|
||||
* Fix text containing "/*" being interpreted as multiline comment in cqlsh (CASSANDRA-17667)
|
||||
* Fix indexing of a frozen collection that is the clustering key and reversed (CASSANDRA-19889)
|
||||
* Emit error when altering a table with non-frozen UDTs with nested non-frozen collections the same way as done upon table creation (CASSANDRA-19925)
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ public class CommitLog implements CommitLogMBean
|
|||
|
||||
final public AbstractCommitLogSegmentManager segmentManager;
|
||||
|
||||
public CommitLogArchiver archiver;
|
||||
public volatile CommitLogArchiver archiver;
|
||||
public final CommitLogMetrics metrics;
|
||||
final AbstractCommitLogService executor;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue