mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
vendor: bump c/storage to main/d06b0f
Bump c/storage to main/d06b0f so we podman could use new `race-free` `AddNames` and `RemoveNames` api Signed-off-by: Aditya R <arajan@redhat.com>
This commit is contained in:
5
vendor/github.com/containers/storage/errors.go
generated
vendored
5
vendor/github.com/containers/storage/errors.go
generated
vendored
@ -1,6 +1,8 @@
|
||||
package storage
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/containers/storage/types"
|
||||
)
|
||||
|
||||
@ -57,4 +59,7 @@ var (
|
||||
ErrNotSupported = types.ErrNotSupported
|
||||
// ErrInvalidMappings is returned when the specified mappings are invalid.
|
||||
ErrInvalidMappings = types.ErrInvalidMappings
|
||||
// ErrInvalidNameOperation is returned when updateName is called with invalid operation.
|
||||
// Internal error
|
||||
errInvalidUpdateNameOperation = errors.New("invalid update name operation")
|
||||
)
|
||||
|
Reference in New Issue
Block a user