Compare commits
1 commit
master
...
fix/26-pol
Author | SHA1 | Date | |
---|---|---|---|
4388a87d15 |
2 changed files with 4 additions and 1 deletions
|
@ -26,6 +26,7 @@ const (
|
|||
backupPolicyField = 2
|
||||
selectorsPolicyField = 3
|
||||
filtersPolicyField = 4
|
||||
uniquePolicyField = 5
|
||||
|
||||
keyAttributeField = 1
|
||||
valueAttributeField = 2
|
||||
|
@ -166,6 +167,8 @@ func (p *PlacementPolicy) StableMarshal(buf []byte) []byte {
|
|||
offset += protoutil.NestedStructureMarshal(filtersPolicyField, buf[offset:], &p.filters[i])
|
||||
}
|
||||
|
||||
offset += protoutil.BoolMarshal(uniquePolicyField, buf[offset:], p.unique)
|
||||
|
||||
return buf
|
||||
}
|
||||
|
||||
|
|
|
@ -55,11 +55,11 @@ type Replica struct {
|
|||
type Operation uint32
|
||||
|
||||
type PlacementPolicy struct {
|
||||
unique bool
|
||||
replicas []Replica
|
||||
backupFactor uint32
|
||||
selectors []Selector
|
||||
filters []Filter
|
||||
unique bool
|
||||
}
|
||||
|
||||
// Attribute of storage node.
|
||||
|
|
Loading…
Reference in a new issue