diff options
author | Alex <alex@adnab.me> | 2024-03-05 21:56:17 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-03-05 21:56:17 +0000 |
commit | 603604cdfc76d9ae86c02f25d49b7c845d138262 (patch) | |
tree | 6cfad4bd68493aa2038b60f7f2005ec91bcc0509 /src/table/replication/sharded.rs | |
parent | bbde9bc91225ac41ea6e8def61c5b7044bb186a0 (diff) | |
parent | 6760895926c23112583dfc53a01ecbcfad02a276 (diff) | |
download | garage-603604cdfc76d9ae86c02f25d49b7c845d138262.tar.gz garage-603604cdfc76d9ae86c02f25d49b7c845d138262.zip |
Merge pull request 'refactor: remove max_write_errors and max_faults' (#760) from yuka/garage:remove-max-write-errors into next-0.10
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/760
Diffstat (limited to 'src/table/replication/sharded.rs')
-rw-r--r-- | src/table/replication/sharded.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/table/replication/sharded.rs b/src/table/replication/sharded.rs index 8ba3700f..e0245949 100644 --- a/src/table/replication/sharded.rs +++ b/src/table/replication/sharded.rs @@ -44,9 +44,6 @@ impl TableReplication for TableShardedReplication { fn write_quorum(&self) -> usize { self.write_quorum } - fn max_write_errors(&self) -> usize { - self.replication_factor - self.write_quorum - } fn partition_of(&self, hash: &Hash) -> Partition { self.system.cluster_layout().current().partition_of(hash) |