mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
Merge pull request #4623 from rhatdan/errors
Ignore ErrCtrRemoved when removing a container
This commit is contained in:
@ -461,7 +461,8 @@ func (r *LocalRuntime) Run(ctx context.Context, c *cliconfig.RunValues, exitCode
|
|||||||
|
|
||||||
if c.IsSet("rm") {
|
if c.IsSet("rm") {
|
||||||
if err := r.Runtime.RemoveContainer(ctx, ctr, false, true); err != nil {
|
if err := r.Runtime.RemoveContainer(ctx, ctr, false, true); err != nil {
|
||||||
if errors.Cause(err) == define.ErrNoSuchCtr {
|
if errors.Cause(err) == define.ErrNoSuchCtr ||
|
||||||
|
errors.Cause(err) == define.ErrCtrRemoved {
|
||||||
logrus.Warnf("Container %s does not exist: %v", ctr.ID(), err)
|
logrus.Warnf("Container %s does not exist: %v", ctr.ID(), err)
|
||||||
} else {
|
} else {
|
||||||
logrus.Errorf("Error removing container %s: %v", ctr.ID(), err)
|
logrus.Errorf("Error removing container %s: %v", ctr.ID(), err)
|
||||||
|
Reference in New Issue
Block a user