frostfs-node/pkg/local_object_storage/blobovnicza/errors.go

14 lines
320 B
Go
Raw Normal View History

package blobovnicza
import (
"errors"
apistatus "github.com/TrueCloudLab/frostfs-sdk-go/client/status"
)
// IsErrNotFound checks if the error returned by Blobovnicza Get/Delete method
// corresponds to the missing object.
func IsErrNotFound(err error) bool {
return errors.As(err, new(apistatus.ObjectNotFound))
}