Ensure thread-safety for CommitLogArchiver in CommitLog

patch by Stefan Miklosovic; reviewed by Caleb Rackliffe for CASSANDRA-19960
This commit is contained in:
Stefan Miklosovic 2024-09-27 12:42:34 +02:00
parent bf8870f763
commit 63cad45bfc
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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;