Skip to content

Commit cf51ae1

Browse files
authored
Increase default interval from minutely to half-hourly (#23)
* Increase default interval from minutely to half-hourly * Changelog
1 parent c2e07cd commit cf51ae1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Increased the default `--loop` interval from every minute to every 30 minutes ([#23]).
10+
11+
[#23]: https://github.com/stackabletech/containerdebug/pull/23
12+
713
## [0.1.1] - 2024-12-16
814

915
### 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)