Skip to content

Commit

Permalink
feat: make delta aligned with streaming, support only strict (#659)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus authored Jan 13, 2025
1 parent 5e50a9e commit f96016f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f96016f

Please sign in to comment.