Skip to content

Commit

Permalink
Overview: cluster and node tags won't be available in 3.13.x
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Nov 28, 2024
1 parent 1db34ae commit 9c103bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/responses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,9 @@ pub struct Overview {
pub product_name: String,
pub product_version: String,

pub cluster_tags: TagMap,
pub node_tags: TagMap,
// these two won't be available in 3.13.x
pub cluster_tags: Option<TagMap>,
pub node_tags: Option<TagMap>,

pub statistics_db_event_queue: u64,
pub churn_rates: ChurnRates,
Expand Down

0 comments on commit 9c103bb

Please sign in to comment.