diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-28 16:53:46 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-11-29 12:15:16 +0000 |
commit | 66ed73f89f532c093dd42d84e8c004421e6d2962 (patch) | |
tree | 35bed1bc8657a7c95b2e86773c9297a781b9760e /libpod/runtime_ctr.go | |
parent | e36483b1e644f8fb6f14a62c062ea635fb6851ed (diff) | |
download | podman-66ed73f89f532c093dd42d84e8c004421e6d2962.tar.gz podman-66ed73f89f532c093dd42d84e8c004421e6d2962.tar.bz2 podman-66ed73f89f532c093dd42d84e8c004421e6d2962.zip |
First pass at fixing test errors
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #68
Approved by: rhatdan
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r-- | libpod/runtime_ctr.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 9a91e0a48..cf669eeb4 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -106,7 +106,7 @@ func (r *Runtime) RemoveContainer(c *Container, force bool) error { } else if !(c.state.State == ContainerStateConfigured || c.state.State == ContainerStateCreated || c.state.State == ContainerStateStopped) { - return errors.Wrapf(ErrCtrStateInvalid, "cannot remove container %s as it is running or paused", c.ID()) + return errors.Wrapf(ErrCtrStateInvalid, "cannot remove container %s as it is %s - running or paused containers cannot be removed", c.ID(), c.state.State.String()) } // Stop the container's storage |