---
gms/gossiper.hh | 1 -
gms/gossiper.cc | 3 ---
2 files changed, 4 deletions(-)
diff --git a/gms/gossiper.hh b/gms/gossiper.hh
index f3d5dd631cb..72263b730ec 100644
--- a/gms/gossiper.hh
+++ b/gms/gossiper.hh
@@ -75,7 +75,6 @@ struct loaded_endpoint_state {
gms::inet_address endpoint;
std::unordered_set<dht::token> tokens;
std::optional<locator::endpoint_dc_rack> opt_dc_rack;
- std::optional<gms::versioned_value> opt_status;
};
/**
diff --git a/gms/gossiper.cc b/gms/gossiper.cc
index 714c0e0e3bb..b48867f79e0 100644
--- a/gms/gossiper.cc
+++ b/gms/gossiper.cc
@@ -2222,9 +2222,6 @@ future<> gossiper::add_saved_endpoint(locator::host_id host_id, gms::loaded_endp
ep_state.add_application_state(gms::application_state::DC, gms::versioned_value::datacenter(st.opt_dc_rack->dc));
ep_state.add_application_state(gms::application_state::RACK, gms::versioned_value::datacenter(st.opt_dc_rack->rack));
}
- if (st.opt_status) {
- ep_state.add_application_state(gms::application_state::STATUS, std::move(*st.opt_status));
- }
auto generation = ep_state.get_heart_beat_state().get_generation();
co_await replicate(ep, std::move(ep_state),
permit.id());
_unreachable_endpoints[ep] = now();
--
2.47.1