diff --git a/src/java/org/apache/cassandra/io/sstable/StorageHandler.java b/src/java/org/apache/cassandra/io/sstable/StorageHandler.java index 1686125eed8a..b68332132c49 100644 --- a/src/java/org/apache/cassandra/io/sstable/StorageHandler.java +++ b/src/java/org/apache/cassandra/io/sstable/StorageHandler.java @@ -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. */