forked from TrueCloudLab/frostfs-node
[#1147] node: Fix issue from gopls
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
This commit is contained in:
parent
9f80d6d9a2
commit
c1af13b47e
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ func (exec *execCtx) formExtendedInfo(ctx context.Context) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil && !apiclient.IsErrObjectAlreadyRemoved(err) {
|
if !apiclient.IsErrObjectAlreadyRemoved(err) {
|
||||||
// IsErrObjectAlreadyRemoved check is required because splitInfo
|
// IsErrObjectAlreadyRemoved check is required because splitInfo
|
||||||
// implicitly performs Head request that may return ObjectAlreadyRemoved
|
// implicitly performs Head request that may return ObjectAlreadyRemoved
|
||||||
// status that is not specified for Delete.
|
// status that is not specified for Delete.
|
||||||
|
|
Loading…
Reference in a new issue