Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit d04ad65

Browse files
authored
Fastboots by default (#33883)
1 parent a2138db commit d04ad65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ledger/src/use_snapshot_archives_at_startup.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use strum::{Display, EnumString, EnumVariantNames, IntoStaticStr, VariantNames};
88
pub enum UseSnapshotArchivesAtStartup {
99
/// If snapshot archives are used, they will be extracted and overwrite any existing state
1010
/// already on disk. This will incur the associated runtime costs for extracting.
11-
#[default]
1211
Always,
1312
/// If snapshot archives are not used, then the local snapshot state already on disk is
1413
/// used instead. If there is no local state on disk, startup will fail.
@@ -18,6 +17,7 @@ pub enum UseSnapshotArchivesAtStartup {
1817
/// restarting. At startup, the snapshot archive would be the newest and loaded from.
1918
/// Note, this also implies that snapshot archives will be used if there is no local snapshot
2019
/// state on disk.
20+
#[default]
2121
WhenNewest,
2222
}
2323

0 commit comments

Comments
 (0)