forked from TrueCloudLab/frostfs-api-go
[#275] reputation/convert: Add nil check
In `SendIntermediateResultRequestBody` add nil check for `trust` field. If true, allocate new `PeerToPeerTrust`. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
0f7a14a69f
commit
bb217067f4
2 changed files with 13 additions and 5 deletions
|
@ -111,10 +111,9 @@ func GenerateSendIntermediateResultRequestBody(empty bool) *reputation.SendInter
|
|||
if !empty {
|
||||
m.SetEpoch(123)
|
||||
m.SetIteration(564)
|
||||
m.SetTrust(GeneratePeerToPeerTrust(empty))
|
||||
}
|
||||
|
||||
m.SetTrust(GeneratePeerToPeerTrust(empty))
|
||||
|
||||
return m
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue