Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const APP_NAME: &str = "containerdebug";
/// Collects and prints helpful debugging information about the environment that it is running in.
#[derive(clap::Parser)]
struct Opts {
/// Loop every DURATION, instead of shutting down once completed (default DURATION: 1m)
/// Loop every DURATION, instead of shutting down once completed (default DURATION: 30m)
#[clap(
long = "loop",
value_name = "INTERVAL",
default_missing_value = "1m",
default_missing_value = "30m",
num_args = 0..=1,
require_equals = true,
)]
Expand Down
Loading