Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/java/org/apache/cassandra/io/sstable/StorageHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ public enum ReloadReason
REGION_CHANGED(false),
/** When index is built */
INDEX_BUILT(false),
/** New node restarted with existing on disk data*/
REPLACE(true);
/** New node restarted with existing on disk data */
REPLACE(true),
/** Retry in case of failure, i.e. if a timeout occurred **/
RETRY(false);

/** When this is true, a reload operation will reload all sstables even those that could
* have been flushed by other nodes. */
Expand Down