From b2e35c538f334ee79de5b19b07eb16d3adde352d Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Wed, 18 Mar 2026 12:01:39 +0200 Subject: [PATCH] virtual_tables: no need to call gossiper if we already know that the node is in shutdown --- db/virtual_tables.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/virtual_tables.cc b/db/virtual_tables.cc index a02d09e229..538d8b51ce 100644 --- a/db/virtual_tables.cc +++ b/db/virtual_tables.cc @@ -99,7 +99,7 @@ public: set_cell(cr, "up", gossiper.is_alive(hostid)); if (gossiper.is_shutdown(endpoint)) { - set_cell(cr, "status", gossiper.get_gossip_status(endpoint)); + set_cell(cr, "status", "shutdown"); } else { set_cell(cr, "status", boost::to_upper_copy(fmt::format("{}", ss.get_node_state(hostid)))); }