forked from TrueCloudLab/frostfs-node
[#1261] shard: Fix delete objects from FSTree
Replace nil storageID with empty like by shard.Get. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
3119f2fbc3
commit
18182e578e
1 changed files with 6 additions and 0 deletions
|
@ -117,6 +117,12 @@ func (s *Shard) deleteFromBlobstor(ctx context.Context, addr oid.Address) error
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
storageID := res.StorageID()
|
storageID := res.StorageID()
|
||||||
|
if storageID == nil {
|
||||||
|
// if storageID is nil it means:
|
||||||
|
// 1. there is no such object
|
||||||
|
// 2. object stored by writecache: should not happen, as `validateWritecacheDoesntContainObject` called before `deleteFromBlobstor`
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var delPrm common.DeletePrm
|
var delPrm common.DeletePrm
|
||||||
delPrm.Address = addr
|
delPrm.Address = addr
|
||||||
|
|
Loading…
Reference in a new issue