diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-23 10:32:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 10:32:15 +0200 |
commit | c71bbffc0f32b4539897249f0f3c1d1398d9f2b4 (patch) | |
tree | fdf0f01b0971f98e86f7084b9ffc608eebd91774 /libpod/define/errors.go | |
parent | bf1e5b875f365cc42cfd2a88fbe7e577e05a49f7 (diff) | |
parent | be5605ac4f0a9765c11bbd52ef0a658d2439b372 (diff) | |
download | podman-c71bbffc0f32b4539897249f0f3c1d1398d9f2b4.tar.gz podman-c71bbffc0f32b4539897249f0f3c1d1398d9f2b4.tar.bz2 podman-c71bbffc0f32b4539897249f0f3c1d1398d9f2b4.zip |
Merge pull request #5948 from jwhonce/jira/826
V2 Restore rmi tests
Diffstat (limited to 'libpod/define/errors.go')
-rw-r--r-- | libpod/define/errors.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go index 3ba343789..16df2a1cc 100644 --- a/libpod/define/errors.go +++ b/libpod/define/errors.go @@ -141,4 +141,7 @@ var ( // ErrConmonOutdated indicates the version of conmon found (whether via the configuration or $PATH) // is out of date for the current podman version ErrConmonOutdated = errors.New("outdated conmon version") + + // ErrImageInUse indicates the requested operation failed because the image was in use + ErrImageInUse = errors.New("image is being used") ) |