From 9c103bb0ffd1da2fd773af51fee7a2247f013063 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Thu, 28 Nov 2024 17:04:01 -0500 Subject: [PATCH] Overview: cluster and node tags won't be available in 3.13.x --- src/responses.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/responses.rs b/src/responses.rs index 206d24b..459f99a 100644 --- a/src/responses.rs +++ b/src/responses.rs @@ -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, + pub node_tags: Option, pub statistics_db_event_queue: u64, pub churn_rates: ChurnRates,