Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fastboots by default #33883

Merged
merged 1 commit into from
Oct 27, 2023
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
2 changes: 1 addition & 1 deletion ledger/src/use_snapshot_archives_at_startup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use strum::{Display, EnumString, EnumVariantNames, IntoStaticStr, VariantNames};
pub enum UseSnapshotArchivesAtStartup {
/// If snapshot archives are used, they will be extracted and overwrite any existing state
/// already on disk. This will incur the associated runtime costs for extracting.
#[default]
Always,
/// If snapshot archives are not used, then the local snapshot state already on disk is
/// used instead. If there is no local state on disk, startup will fail.
Expand All @@ -18,6 +17,7 @@ pub enum UseSnapshotArchivesAtStartup {
/// restarting. At startup, the snapshot archive would be the newest and loaded from.
/// Note, this also implies that snapshot archives will be used if there is no local snapshot
/// state on disk.
#[default]
WhenNewest,
}

Expand Down