forked from TrueCloudLab/frostfs-api-go
[#70] netmap: Regenerate protobuf for Replica
* Since EC field tags are renumerated, it is required to regenerate netmap grpc. * Add a generator with EC replica to check it with unit-test. Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
6e9d385f3c
commit
491a47e7fe
2 changed files with 12 additions and 0 deletions
BIN
netmap/grpc/types.pb.go
generated
BIN
netmap/grpc/types.pb.go
generated
Binary file not shown.
|
@ -81,6 +81,17 @@ func GenerateReplica(empty bool) *netmap.Replica {
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GenerateEC(empty bool) *netmap.Replica {
|
||||||
|
m := new(netmap.Replica)
|
||||||
|
|
||||||
|
if !empty {
|
||||||
|
m.SetECDataCount(4)
|
||||||
|
m.SetECParityCount(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
func GenerateReplicas(empty bool) []netmap.Replica {
|
func GenerateReplicas(empty bool) []netmap.Replica {
|
||||||
var res []netmap.Replica
|
var res []netmap.Replica
|
||||||
|
|
||||||
|
@ -88,6 +99,7 @@ func GenerateReplicas(empty bool) []netmap.Replica {
|
||||||
res = append(res,
|
res = append(res,
|
||||||
*GenerateReplica(false),
|
*GenerateReplica(false),
|
||||||
*GenerateReplica(false),
|
*GenerateReplica(false),
|
||||||
|
*GenerateEC(false),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue