diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-11 05:59:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 05:59:54 -0400 |
commit | 397de44d487e25b5820777fcbab9728cf2af5e14 (patch) | |
tree | 88d76fcd302f91b90c5c622a4391fa859490307c /libpod/oci_attach_unsupported.go | |
parent | d1798d038376bf494f19b1531b9e0450592b24b9 (diff) | |
parent | 4c155d36cba90fd07f75c6d7d6f09848b88dac4a (diff) | |
download | podman-397de44d487e25b5820777fcbab9728cf2af5e14.tar.gz podman-397de44d487e25b5820777fcbab9728cf2af5e14.tar.bz2 podman-397de44d487e25b5820777fcbab9728cf2af5e14.zip |
Merge pull request #7592 from mheon/force_attach_winch
Force Attach() to send a SIGWINCH and redraw
Diffstat (limited to 'libpod/oci_attach_unsupported.go')
-rw-r--r-- | libpod/oci_attach_unsupported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/oci_attach_unsupported.go b/libpod/oci_attach_unsupported.go index cd7c674b2..317dfdc90 100644 --- a/libpod/oci_attach_unsupported.go +++ b/libpod/oci_attach_unsupported.go @@ -9,7 +9,7 @@ import ( "k8s.io/client-go/tools/remotecommand" ) -func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool) error { +func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan remotecommand.TerminalSize, startContainer bool, started chan bool, attachRdy chan<- bool) error { return define.ErrNotImplemented } |