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.
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
Original file line number Diff line number Diff 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 ) ]
1515struct 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 ) ]
You can’t perform that action at this time.
0 commit comments