diff options
author | Alex Auvolat <alex@adnab.me> | 2023-12-11 16:09:22 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-12-11 16:09:22 +0100 |
commit | 0041b013a473e3ae72f50209d8f79db75a72848b (patch) | |
tree | 7b44d731b86d14369bcef1a65cdc87a8538c484b /src/rpc/rpc_helper.rs | |
parent | adccce1145d5d82581e4a5da707be35badb2d5a6 (diff) | |
download | garage-0041b013a473e3ae72f50209d8f79db75a72848b.tar.gz garage-0041b013a473e3ae72f50209d8f79db75a72848b.zip |
layout: refactoring and fix in layout helpernlnet-task3
Diffstat (limited to 'src/rpc/rpc_helper.rs')
-rw-r--r-- | src/rpc/rpc_helper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rpc_helper.rs b/src/rpc/rpc_helper.rs index 77a36ca1..ae3a19c4 100644 --- a/src/rpc/rpc_helper.rs +++ b/src/rpc/rpc_helper.rs @@ -502,7 +502,7 @@ impl RpcHelper { .rev() .chain(layout.old_versions.iter().rev()); for ver in ver_iter { - if ver.version > layout.all_sync() { + if ver.version > layout.sync_map_min() { continue; } let nodes = ver.nodes_of(position, ver.replication_factor); |