From 6cd0a015956dd366c62077254301f9745606f867 Mon Sep 17 00:00:00 2001 From: Dirk Loss Date: Sun, 17 Oct 2021 15:43:14 +0200 Subject: [PATCH] Fix help message for --rga-cache-path Former message was a copy of --rga-cache-compression-level --- src/config.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/config.rs b/src/config.rs index db5ff85..e370e9a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -231,16 +231,13 @@ pub struct CacheConfig { )] pub compression_level: CacheCompressionLevel, - /// ZSTD compression level to apply to adapter outputs before storing in cache db - /// - /// Ranges from 1 - 22 + /// Path to store cache db #[serde(default, skip_serializing_if = "is_default")] #[structopt( default_value, long = "--rga-cache-path", hidden_short_help = true, require_equals = true, - help = "" )] pub path: CachePath, }