summaryrefslogtreecommitdiff
path: root/libpod/image
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2020-07-31 17:17:56 -0400
committerMatthew Heon <matthew.heon@pm.me>2020-07-31 17:17:56 -0400
commite3ced7217f8c60de7faf1ad7d741709d8a255e95 (patch)
tree32fb6c77799aa697c3c47f4e11711b1eaff458e6 /libpod/image
parent7a15be546adffe4f884abfbd4ed02f69ac7659e0 (diff)
downloadpodman-e3ced7217f8c60de7faf1ad7d741709d8a255e95.tar.gz
podman-e3ced7217f8c60de7faf1ad7d741709d8a255e95.tar.bz2
podman-e3ced7217f8c60de7faf1ad7d741709d8a255e95.zip
Ensure libpod/define does not include libpod/image
The define package under Libpod is intended to be an extremely minimal package, including constants and very little else. However, as a result of some legacy code, it was dragging in all of libpod/image (and, less significantly, the util package). Fortunately, this was just to ensure that error constants were not duplicating, and there's nothing preventing us from importing in the other direction and keeping libpod/define free of dependencies. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/image')
-rw-r--r--libpod/image/errors.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/libpod/image/errors.go b/libpod/image/errors.go
index ddbf7be4b..3f58b1c6a 100644
--- a/libpod/image/errors.go
+++ b/libpod/image/errors.go
@@ -1,17 +1,16 @@
package image
import (
- "errors"
+ "github.com/containers/podman/v2/libpod/define"
)
-// Copied directly from libpod errors to avoid circular imports
var (
// ErrNoSuchCtr indicates the requested container does not exist
- ErrNoSuchCtr = errors.New("no such container")
+ ErrNoSuchCtr = define.ErrNoSuchCtr
// ErrNoSuchPod indicates the requested pod does not exist
- ErrNoSuchPod = errors.New("no such pod")
+ ErrNoSuchPod = define.ErrNoSuchPod
// ErrNoSuchImage indicates the requested image does not exist
- ErrNoSuchImage = errors.New("no such image")
+ ErrNoSuchImage = define.ErrNoSuchImage
// ErrNoSuchTag indicates the requested image tag does not exist
- ErrNoSuchTag = errors.New("no such tag")
+ ErrNoSuchTag = define.ErrNoSuchTag
)