forked from TrueCloudLab/frostfs-node
[#1418] meta: Do not use pointers as parameters
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
1c100fb4b0
commit
e265ce2d52
20 changed files with 252 additions and 223 deletions
|
@ -104,7 +104,7 @@ func (s *Shard) refillMetabase() error {
|
|||
inhumePrm.WithTombstoneAddress(tombAddr)
|
||||
inhumePrm.WithAddresses(tombMembers...)
|
||||
|
||||
_, err = s.metaBase.Inhume(&inhumePrm)
|
||||
_, err = s.metaBase.Inhume(inhumePrm)
|
||||
if err != nil {
|
||||
return fmt.Errorf("could not inhume objects: %w", err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue