Skip to content

Commit

Permalink
Merge branch 'cassandra-4.0' into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
dcapwell committed Jul 2, 2021
2 parents 985b46d + bb3a39a commit c611966
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Add a system property to set hostId if not yet initialized (CASSANDRA-14582)
* GossiperTest.testHasVersion3Nodes didn't take into account trunk version changes, fixed to rely on latest version (CASSANDRA-16651)
Merged from 4.0:
* BinLog does not close chronicle queue leaving this to GC to cleanup (CASSANDRA-16774)
* Add repaired/unrepaired bytes back to nodetool (CASSANDRA-15282)
* Upgrade lz4-java to 1.8.0 to add RH6 support back (CASSANDRA-16753)
* Improve DiagnosticEventService.publish(event) logging message of events (CASSANDRA-16749)
Expand Down
2 changes: 2 additions & 0 deletions src/java/org/apache/cassandra/utils/binlog/BinLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ public synchronized void stop() throws InterruptedException
shouldContinue = false;
sampleQueue.put(NO_OP);
binLogThread.join();
appender.close();
appender = null;
queue.close();
queue = null;
archiver.stop();
currentPaths.remove(path);
Expand Down

0 comments on commit c611966

Please sign in to comment.