Some checks failed
Vulncheck / Vulncheck (pull_request) Failing after 4s
Build / Build Components (1.20) (pull_request) Failing after 2s
Tests and linters / Tests (1.19) (pull_request) Failing after 3s
Tests and linters / Tests (1.20) (pull_request) Failing after 3s
Tests and linters / Tests with -race (pull_request) Failing after 3s
Tests and linters / Staticcheck (pull_request) Failing after 2s
Build / Build Components (1.19) (pull_request) Successful in 12m9s
Tests and linters / Lint (pull_request) Successful in 16m12s
Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
10 lines
365 B
Go
10 lines
365 B
Go
package meta
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/util/logicerr"
|
|
)
|
|
|
|
// ErrObjectIsExpired is returned when the requested object's
|
|
// epoch is less than the current one. Such objects are considered
|
|
// as removed and should not be returned from the Storage Engine.
|
|
var ErrObjectIsExpired = logicerr.New("object is expired")
|