More precise usage on diskUtilization setting

This commit is contained in:
benoit74 2024-09-03 18:04:03 +00:00
parent 7f76415710
commit 6b3c725eeb
No known key found for this signature in database
GPG Key ID: B89606434FC7B530
2 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Stream files downloads to not exhaust memory (#373)
- Fix documentation on `--diskUtilization` setting (#375)
## [2.1.0] - 2024-08-09

View File

@ -286,8 +286,8 @@ def run(raw_args):
parser.add_argument(
"--diskUtilization",
help="If set, save state and exit if diskutilization "
"exceeds this percentage value",
help="Save state and exit if disk utilization exceeds this percentage value."
" Default (if not set) is 90%. Set to 0 to disable disk utilization check.",
type=int,
default=90,
)