diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-21 05:25:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 05:25:19 -0400 |
commit | 41677b192aac6ae2849aa792e4ded856773712fd (patch) | |
tree | 6825fc6742e92a24ebc7785aeabc0956d8f2ce8e /libpod/oci.go | |
parent | 0d3aa18f04aa72d23ddec1dac779c18ffb71cfb3 (diff) | |
parent | 6af4c08a50e02eb38ffa2be96359c14e10b5e5ba (diff) | |
download | podman-41677b192aac6ae2849aa792e4ded856773712fd.tar.gz podman-41677b192aac6ae2849aa792e4ded856773712fd.tar.bz2 podman-41677b192aac6ae2849aa792e4ded856773712fd.zip |
Merge pull request #8979 from haircommander/full-attach-path
Use full attach path, rather than a symlink
Diffstat (limited to 'libpod/oci.go')
-rw-r--r-- | libpod/oci.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index f2053f1b5..1f2c7dd71 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -94,10 +94,6 @@ type OCIRuntime interface { // ExecUpdateStatus checks the status of a given exec session. // Returns true if the session is still running, or false if it exited. ExecUpdateStatus(ctr *Container, sessionID string) (bool, error) - // ExecContainerCleanup cleans up after an exec session exits. - // It removes any files left by the exec session that are no longer - // needed, including the attach socket. - ExecContainerCleanup(ctr *Container, sessionID string) error // CheckpointContainer checkpoints the given container. // Some OCI runtimes may not support this - if SupportsCheckpoint() |