Skip to content

Commit

Permalink
Fix changed podman error message
Browse files Browse the repository at this point in the history
* podman rm a non existing container error message changed
* before: no container with name
* after: no container with ID or name
  • Loading branch information
arnaudveron committed Aug 1, 2023
1 parent c7703de commit edcb0db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions opensvc/drivers/resource/container/podman/__init__.py
Expand Up @@ -96,6 +96,8 @@ def container_rm(self):
pass
elif "no container with name" in err:
pass
elif "no container with ID or name" in err:
pass
elif "removal" in err and "already in progress" in err:
self.wait_for_removed()
else:
Expand Down

0 comments on commit edcb0db

Please sign in to comment.