diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-05 16:22:29 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-05 16:22:29 +0100 |
commit | d7e005251dad73eb7d6f2154c6082f61d16554d0 (patch) | |
tree | a160bf1dfff3555bcf8a3c52a40863cde2cc4a51 /src/table/table_sharded.rs | |
parent | 3882d5ba36f48751fdf6e5b82eae0dd990238655 (diff) | |
download | garage-d7e005251dad73eb7d6f2154c6082f61d16554d0.tar.gz garage-d7e005251dad73eb7d6f2154c6082f61d16554d0.zip |
Not fully tested: new multi-dc MagLev
Diffstat (limited to 'src/table/table_sharded.rs')
-rw-r--r-- | src/table/table_sharded.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/table/table_sharded.rs b/src/table/table_sharded.rs index 47bdfeaf..098637dd 100644 --- a/src/table/table_sharded.rs +++ b/src/table/table_sharded.rs @@ -44,7 +44,6 @@ impl TableReplication for TableShardedReplication { fn split_points(&self, ring: &Ring) -> Vec<Hash> { let mut ret = vec![]; - ret.push([0u8; 32].into()); for entry in ring.ring.iter() { ret.push(entry.location); } |