diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-06 06:26:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 06:26:19 -0400 |
commit | 4351e3394788ad5b0a62cb74a97382cee5112bf0 (patch) | |
tree | a30ff44a9fffdb1064d4e8528a8b601384f6dd52 /libpod/define/errors.go | |
parent | a7ceed05a0782beecfbfc53bb1f9bfd5c41f859e (diff) | |
parent | e996bb583d92c746dea36c71c3f747077271b75f (diff) | |
download | podman-4351e3394788ad5b0a62cb74a97382cee5112bf0.tar.gz podman-4351e3394788ad5b0a62cb74a97382cee5112bf0.tar.bz2 podman-4351e3394788ad5b0a62cb74a97382cee5112bf0.zip |
Merge pull request #6846 from mheon/fix_pod_errors
Print errors from individual containers in pods
Diffstat (limited to 'libpod/define/errors.go')
-rw-r--r-- | libpod/define/errors.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go index 98dc603d1..200c7e3d4 100644 --- a/libpod/define/errors.go +++ b/libpod/define/errors.go @@ -70,6 +70,10 @@ var ( // ErrInternal indicates an internal library error ErrInternal = errors.New("internal libpod error") + // ErrPodPartialFail indicates that a pod operation was only partially + // successful, and some containers within the pod failed. + ErrPodPartialFail = errors.New("some containers failed") + // ErrDetach indicates that an attach session was manually detached by // the user. ErrDetach = utils.ErrDetach |