Skip to content

Commit 4070fbd

Browse files
committed
Increase default interval from minutely to half-hourly
1 parent c2e07cd commit 4070fbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ const APP_NAME: &str = "containerdebug";
1313
/// Collects and prints helpful debugging information about the environment that it is running in.
1414
#[derive(clap::Parser)]
1515
struct Opts {
16-
/// Loop every DURATION, instead of shutting down once completed (default DURATION: 1m)
16+
/// Loop every DURATION, instead of shutting down once completed (default DURATION: 30m)
1717
#[clap(
1818
long = "loop",
1919
value_name = "INTERVAL",
20-
default_missing_value = "1m",
20+
default_missing_value = "30m",
2121
num_args = 0..=1,
2222
require_equals = true,
2323
)]

0 commit comments

Comments
 (0)