diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-21 19:39:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 19:39:21 +0200 |
commit | 7f4afe45abc07eb16e8a823c6ba9070d7a7a8f79 (patch) | |
tree | e7b68efb2c1f8c52890d9df45d7d9b9fa066b360 /pkg/domain/infra/abi/containers.go | |
parent | 6a6ef402c3c8e14a621a98a4029255e3be41d5ef (diff) | |
parent | 6ca721cccd98bf9936b33d690b28a52cd4213a18 (diff) | |
download | podman-7f4afe45abc07eb16e8a823c6ba9070d7a7a8f79.tar.gz podman-7f4afe45abc07eb16e8a823c6ba9070d7a7a8f79.tar.bz2 podman-7f4afe45abc07eb16e8a823c6ba9070d7a7a8f79.zip |
Merge pull request #10427 from rhatdan/errors
Drop container does not exist on removal to debugf
Diffstat (limited to 'pkg/domain/infra/abi/containers.go')
-rw-r--r-- | pkg/domain/infra/abi/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/containers.go b/pkg/domain/infra/abi/containers.go index d0a2b1bae..237a43441 100644 --- a/pkg/domain/infra/abi/containers.go +++ b/pkg/domain/infra/abi/containers.go @@ -275,7 +275,7 @@ func (ic *ContainerEngine) ContainerRm(ctx context.Context, namesOrIds []string, case nil: // remove container names that we successfully deleted reports = append(reports, &report) - case define.ErrNoSuchCtr: + case define.ErrNoSuchCtr, define.ErrCtrExists: // There is still a potential this is a libpod container tmpNames = append(tmpNames, ctr) default: |