diff options
author | Peter Hunt <pehunt@redhat.com> | 2021-01-14 13:58:36 -0500 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2021-04-16 17:45:52 -0400 |
commit | 452b9e204f21f32c71ac876f1fce82697a1935e9 (patch) | |
tree | d2ad478227a7d0bd7d872fb317c3b81ae2865a3e /libpod/container_exec.go | |
parent | fdfff1dab2131cf53335576df9ece63f7c95c859 (diff) | |
download | podman-452b9e204f21f32c71ac876f1fce82697a1935e9.tar.gz podman-452b9e204f21f32c71ac876f1fce82697a1935e9.tar.bz2 podman-452b9e204f21f32c71ac876f1fce82697a1935e9.zip |
oci: drop ExecContainerCleanup
without the socketsDir, we no longer need to worry about cleaning up after an exec.
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'libpod/container_exec.go')
-rw-r--r-- | libpod/container_exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_exec.go b/libpod/container_exec.go index 8d8ed14aa..c359f1e5d 100644 --- a/libpod/container_exec.go +++ b/libpod/container_exec.go @@ -773,7 +773,7 @@ func (c *Container) cleanupExecBundle(sessionID string) error { return err } - return c.ociRuntime.ExecContainerCleanup(c, sessionID) + return nil } // the path to a containers exec session bundle |