From b8b2c6f0f85b2dcfbccfe58b3c76d10e862b0abb Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Sat, 3 May 2025 23:33:54 -0500 Subject: [PATCH] (chore): more sensible defaults. --- src/args.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/args.rs b/src/args.rs index e15537d..62fe50d 100644 --- a/src/args.rs +++ b/src/args.rs @@ -38,10 +38,10 @@ pub struct Args { #[clap(long = "kind", default_value = "rusnapshot")] pub snapshot_kind: String, /// Keep only the last X items. - #[clap(short = 'k', long = "keep", default_value = "10")] + #[clap(short = 'k', long = "keep", default_value = "3")] pub keep_only: usize, /// Time in milliseconds until `SQLite` can return a timeout. Do not touch if you don't know what you are doing. - #[clap(long = "timeout", default_value = "5000")] + #[clap(long = "timeout", default_value = "10000")] pub timeout: usize, /// Create a read-only/ro snapshot. #[clap(long = "create", conflicts_with_all = &["restore_snapshot", "delete_snapshot", "list_snapshots", "clean_snapshots"])]