From 7348d9ff2fef02df9c0e836433dca14d1bb4e6f2 Mon Sep 17 00:00:00 2001 From: Ashwin Sekar Date: Wed, 7 Feb 2024 22:09:14 +0000 Subject: [PATCH] validator: include waited_for_supermajority in startup metric --- core/src/validator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/validator.rs b/core/src/validator.rs index a90044881ee458..0353f0fd9a20c8 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -1366,6 +1366,7 @@ impl Validator { ("id", id.to_string(), String), ("version", solana_version::version!(), String), ("cluster_type", genesis_config.cluster_type as u32, i64), + ("waited_for_supermajority", waited_for_supermajority, bool), ); *start_progress.write().unwrap() = ValidatorStartProgress::Running;