diff options
author | Alex Auvolat <alex@adnab.me> | 2023-12-07 11:16:10 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-12-07 11:16:10 +0100 |
commit | d90de365b3b30cb631b22fcd62c98bddb5a91549 (patch) | |
tree | 9ee7226fa49571179b9fd7ff03e45a838a51a909 /src/table/replication/sharded.rs | |
parent | 95eb13eb08d517d328e3c8aeb222440a27211ee9 (diff) | |
download | garage-d90de365b3b30cb631b22fcd62c98bddb5a91549.tar.gz garage-d90de365b3b30cb631b22fcd62c98bddb5a91549.zip |
table sync: use write quorums to report global success or failure of sync
Diffstat (limited to 'src/table/replication/sharded.rs')
-rw-r--r-- | src/table/replication/sharded.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/replication/sharded.rs b/src/table/replication/sharded.rs index 2a16bc0c..55d0029d 100644 --- a/src/table/replication/sharded.rs +++ b/src/table/replication/sharded.rs @@ -60,12 +60,12 @@ impl TableReplication for TableShardedReplication { .current() .partitions() .map(|(partition, first_hash)| { - let storage_nodes = layout.storage_nodes_of(&first_hash); + let storage_sets = layout.storage_sets_of(&first_hash); SyncPartition { partition, first_hash, last_hash: [0u8; 32].into(), // filled in just after - storage_nodes, + storage_sets, } }) .collect::<Vec<_>>(); |