diff --git a/src/table/replication/fullcopy.rs b/src/table/replication/fullcopy.rs index b6b95ae6..f3ee51fe 100644 --- a/src/table/replication/fullcopy.rs +++ b/src/table/replication/fullcopy.rs @@ -53,7 +53,7 @@ impl TableReplication for TableFullReplication { ConsistencyMode::Consistent => { let layout = self.system.cluster_layout(); let nodes = layout.read_version()?.all_nodes(); - Ok(nodes.len().div_euclid(2) + 1) + Ok(nodes.len().div_ceil(2)) } } }