Fastboots by default (#33883)

This commit is contained in:
Brooks 2023-10-27 07:23:29 -04:00 committed by GitHub
parent a2138dba98
commit d04ad6557d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.
@ -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,
}