From a8ae78af0ad2174480e64f9d4dd43b8381932f42 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Tue, 19 Oct 2021 16:16:10 +0200 Subject: Adapt tests to new syntax with public keys --- src/table/replication/fullcopy.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/table') diff --git a/src/table/replication/fullcopy.rs b/src/table/replication/fullcopy.rs index ae6851fb..8f01fbdd 100644 --- a/src/table/replication/fullcopy.rs +++ b/src/table/replication/fullcopy.rs @@ -28,11 +28,7 @@ impl TableReplication for TableFullReplication { fn write_nodes(&self, _hash: &Hash) -> Vec { let ring = self.system.ring.borrow(); - ring.config - .members - .keys() - .cloned() - .collect::>() + ring.config.members.keys().cloned().collect::>() } fn write_quorum(&self) -> usize { let nmembers = self.system.ring.borrow().config.members.len(); -- cgit v1.2.3