Skip to content

Commit

Permalink
Change default compression transition time to be far in the future ra…
Browse files Browse the repository at this point in the history
…ther than the epoch. This implies that just changing the compression mode will not immediately lead to a dangerous situation in which recent backups could be deleted erroneously.
  • Loading branch information
mattl-netflix committed Sep 26, 2024
1 parent 7433fe8 commit 36ca7b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ default boolean addMD5ToBackupUploads() {
* @return the milliseconds since the epoch of the transition time.
*/
default long getCompressionTransitionEpochMillis() {
return 0L;
return Long.MAX_VALUE;
}

/** @return whether to enable auto_snapshot */
Expand Down

0 comments on commit 36ca7b9

Please sign in to comment.