mirror of
https://github.com/containers/podman.git
synced 2026-03-29 20:14:05 -04:00
The podman container cleanup command is not really intended for human use. Instead each conmon will spawn this command after the container exit to make sure we can cleanup resources asynchronously. However this command will always race against other foreground process such as podman rm -fa. Therefore it is possible that the ctr was already removed and we should not log errors in this case. While these errors are normally not seen as the command is int he background you can see it if you enable syslog logging and then they just spam the log with useless errors so just ignore them. Signed-off-by: Paul Holzinger <pholzing@redhat.com>