diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-25 16:19:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 16:19:34 -0400 |
commit | 3944d8c142c59a293069fda5254e0088662b8d7b (patch) | |
tree | 7929f25201c14a9f4d5a963a905e072f86650633 /libpod/container_exec.go | |
parent | e11feb230923a169c1e235552afa2f7bec7f0fff (diff) | |
parent | 9fcfea7643b243a3ad691daaf07fe358f85491cb (diff) | |
download | podman-3944d8c142c59a293069fda5254e0088662b8d7b.tar.gz podman-3944d8c142c59a293069fda5254e0088662b8d7b.tar.bz2 podman-3944d8c142c59a293069fda5254e0088662b8d7b.zip |
Merge pull request #14329 from mheon/fixmes_1
First batch of resolutions to FIXMEs
Diffstat (limited to 'libpod/container_exec.go')
-rw-r--r-- | libpod/container_exec.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libpod/container_exec.go b/libpod/container_exec.go index c05e7fd94..1e8fce4da 100644 --- a/libpod/container_exec.go +++ b/libpod/container_exec.go @@ -279,8 +279,6 @@ func (c *Container) ExecStart(sessionID string) error { // ExecStartAndAttach starts and attaches to an exec session in a container. // newSize resizes the tty to this size before the process is started, must be nil if the exec session has no tty -// TODO: Should we include detach keys in the signature to allow override? -// TODO: How do we handle AttachStdin/AttachStdout/AttachStderr? func (c *Container) ExecStartAndAttach(sessionID string, streams *define.AttachStreams, newSize *define.TerminalSize) error { if !c.batched { c.lock.Lock() |