diff --git a/db/view/view.cc b/db/view/view.cc index c5547d81f8..f9fd2b253f 100644 --- a/db/view/view.cc +++ b/db/view/view.cc @@ -2095,14 +2095,14 @@ future<> view_builder::calculate_shard_build_step(view_builder_init_state& vbi) future> view_builder::view_build_statuses(sstring keyspace, sstring view_name) const { std::unordered_map status = co_await _sys_dist_ks.view_status(std::move(keyspace), std::move(view_name)); - std::unordered_map status_map; - const auto& topo = service::get_local_storage_proxy().get_token_metadata_ptr()->get_topology(); - topo.for_each_node([&] (const locator::node *node) { - auto it = status.find(node->host_id()); - auto s = it != status.end() ? std::move(it->second) : "UNKNOWN"; - status_map.emplace(node->endpoint().to_sstring(), std::move(s)); - }); - co_return status_map; + std::unordered_map status_map; + const auto& topo = service::get_local_storage_proxy().get_token_metadata_ptr()->get_topology(); + topo.for_each_node([&] (const locator::node *node) { + auto it = status.find(node->host_id()); + auto s = it != status.end() ? std::move(it->second) : "UNKNOWN"; + status_map.emplace(node->endpoint().to_sstring(), std::move(s)); + }); + co_return status_map; } future<> view_builder::add_new_view(view_ptr view, build_step& step) {