diff --git a/server/src/cli.rs b/server/src/cli.rs index 3921acd0..e4b6108e 100644 --- a/server/src/cli.rs +++ b/server/src/cli.rs @@ -213,12 +213,12 @@ pub struct EdgeArgs { #[clap(long, env, default_value_t = false, conflicts_with = "strict")] pub dynamic: bool, - /// If set to true. Edge connects to upstream using streaming instead of polling. Requires strict mode + /// If set to true, Edge connects to upstream using streaming instead of polling. Requires strict mode #[clap(long, env, default_value_t = false, requires = "strict")] pub streaming: bool, - /// If set to true. Edge connects to upstream using delta polling instead of normal polling. This is experimental feature and might and change. - #[clap(long, env, default_value_t = false, conflicts_with = "streaming")] + /// If set to true, Edge connects to upstream using delta polling instead of normal polling. This is experimental feature and might and change. Requires strict mode + #[clap(long, env, default_value_t = false, requires = "strict")] pub delta: bool, /// Sets a remote write url for prometheus metrics, if this is set, prometheus metrics will be written upstream