storage_service: fix logging

When logger outputs a range it already does join, so no other join is
needed.
This commit is contained in:
Gleb Natapov
2025-01-05 10:56:10 +02:00
parent 7556e3d045
commit 8e55cc6c78

View File

@@ -7457,7 +7457,7 @@ future<> storage_service::wait_for_normal_state_handled_on_boot() {
static auto fmt_nodes_with_statuses = [this] (const auto& eps) {
return eps | std::views::transform([this] (const auto& ep) {
return ::format("({}, status={})", ep, _gossiper.get_gossip_status(ep));
}) | std::views::join_with(',');
});
};
slogger.info("Started waiting for normal state handlers to finish");