mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2025-10-19 14:33:17 +00:00
Disable disk utilization check by default (#850)
Related to https://github.com/webrecorder/browsertrix-crawler/issues/848 Several users have had issues with disk utilization checks, including the values reported by `df` inside the crawler container having unexpected results for mounted volumes. The commonly recommended solution to this is to use `docker system ps`, but that is of course not available within the Docker container itself. This PR changes disk utilization checks to be an opt-in feature by setting the default value to `0` (disabled).
This commit is contained in:
parent
da953b670b
commit
e09d10c582
1 changed files with 1 additions and 1 deletions
|
@ -475,7 +475,7 @@ class ArgParser {
|
||||||
describe:
|
describe:
|
||||||
"If set, save state and exit if disk utilization exceeds this percentage value",
|
"If set, save state and exit if disk utilization exceeds this percentage value",
|
||||||
type: "number",
|
type: "number",
|
||||||
default: 90,
|
default: 0,
|
||||||
},
|
},
|
||||||
|
|
||||||
timeLimit: {
|
timeLimit: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue