aboutsummaryrefslogtreecommitdiff
path: root/src/api/k2v
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/k2v')
-rw-r--r--src/api/k2v/index.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/api/k2v/index.rs b/src/api/k2v/index.rs
index 3c2f51a9..c189232a 100644
--- a/src/api/k2v/index.rs
+++ b/src/api/k2v/index.rs
@@ -25,8 +25,11 @@ pub async fn handle_read_index(
) -> Result<Response<Body>, Error> {
let reverse = reverse.unwrap_or(false);
- // TODO: not only current
- let node_id_vec = garage.system.cluster_layout().current().node_ids().to_vec();
+ let node_id_vec = garage
+ .system
+ .cluster_layout()
+ .all_nongateway_nodes()
+ .into_owned();
let (partition_keys, more, next_start) = read_range(
&garage.k2v.counter_table.table,