From 433b2e6a47163bebec6c84cda86a0271e20b06fa Mon Sep 17 00:00:00 2001 From: Airat Arifullin Date: Tue, 26 Mar 2024 18:59:45 +0300 Subject: [PATCH] [#42] netmap: Renumerate Replica message fields * Reassign ec_data_count and ec_parity_count to 3 and 4. Signed-off-by: Airat Arifullin --- netmap/types.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netmap/types.proto b/netmap/types.proto index 926c4bc..2180869 100644 --- a/netmap/types.proto +++ b/netmap/types.proto @@ -105,10 +105,10 @@ message Replica { string selector = 2 [ json_name = "selector" ]; // Data shards count - uint32 ec_data_count = 6 [ json_name = "ecDataCount" ]; + uint32 ec_data_count = 3 [ json_name = "ecDataCount" ]; // Parity shards count - uint32 ec_parity_count = 7 [ json_name = "ecParityCount" ]; + uint32 ec_parity_count = 4 [ json_name = "ecParityCount" ]; } // Set of rules to select a subset of nodes from `NetworkMap` able to store