File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
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
+
7
13
## [ 0.1.1] - 2024-12-16
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ const APP_NAME: &str = "containerdebug";
13
13
/// Collects and prints helpful debugging information about the environment that it is running in.
14
14
#[ derive( clap:: Parser ) ]
15
15
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 )
17
17
#[ clap(
18
18
long = "loop" ,
19
19
value_name = "INTERVAL" ,
20
- default_missing_value = "1m " ,
20
+ default_missing_value = "30m " ,
21
21
num_args = 0 ..=1 ,
22
22
require_equals = true ,
23
23
) ]
You can’t perform that action at this time.
0 commit comments