mirror of https://github.com/containers/podman.git
clean up after healthcheck execs
when executing a healthcheck, we were not cleaning up after exec's use of a socket. we now remove the socket file and ignore if for reason it does not exist. Fixes: #3962 Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
parent
af8fedcc78
commit
7b68cd0b3d
|
@ -163,7 +163,15 @@ func (c *Container) createExecBundle(sessionID string) (err error) {
|
|||
|
||||
// cleanup an exec session after its done
|
||||
func (c *Container) cleanupExecBundle(sessionID string) error {
|
||||
return os.RemoveAll(c.execBundlePath(sessionID))
|
||||
if err := os.RemoveAll(c.execBundlePath(sessionID)); err != nil && !os.IsNotExist(err) {
|
||||
return err
|
||||
}
|
||||
// Clean up the sockets dir. Issue #3962
|
||||
// Also ignore if it doesn't exist for some reason; hence the conditional return below
|
||||
if err := os.RemoveAll(filepath.Join(c.ociRuntime.socketsDir, sessionID)); err != nil && !os.IsNotExist(err) {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// the path to a containers exec session bundle
|
||||
|
|
Loading…
Reference in New Issue