Fix sled cache capacity help text

This commit is contained in:
Aode (Lion) 2022-03-21 21:18:51 -05:00
parent a9b06b6f66
commit 9a8dc0e44f
1 changed files with 4 additions and 1 deletions

View File

@ -75,7 +75,10 @@ pub(crate) struct Overrides {
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
max_image_area: Option<usize>, max_image_area: Option<usize>,
#[structopt(long, help = "Specify the maximum area in pixels allowed in an image")] #[structopt(
long,
help = "Specify the number of bytes sled is allowed to use for it's cache"
)]
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
sled_cache_capacity: Option<u64>, sled_cache_capacity: Option<u64>,