diff options
author | Qi Wang <qiwan@redhat.com> | 2020-04-29 23:47:01 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-04-29 23:47:15 -0400 |
commit | 75eeb40f41f2839dc91281e24b1094180b97a8aa (patch) | |
tree | 7809c97d047c313d6f78a5f05b075710d2f2aa50 /pkg/domain/infra/abi | |
parent | 99f8cfc2dc39b11cd315062167f1ffaf85eda946 (diff) | |
download | podman-75eeb40f41f2839dc91281e24b1094180b97a8aa.tar.gz podman-75eeb40f41f2839dc91281e24b1094180b97a8aa.tar.bz2 podman-75eeb40f41f2839dc91281e24b1094180b97a8aa.zip |
testv2: enable attach test
testv2: enable attach test
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r-- | pkg/domain/infra/abi/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/containers.go b/pkg/domain/infra/abi/containers.go index 4c3389418..82bf82bf0 100644 --- a/pkg/domain/infra/abi/containers.go +++ b/pkg/domain/infra/abi/containers.go @@ -514,7 +514,7 @@ func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrId string, } // If the container is in a pod, also set to recursively start dependencies - if err := terminal.StartAttachCtr(ctx, ctr, options.Stdin, options.Stderr, options.Stdin, options.DetachKeys, options.SigProxy, false, ctr.PodID() != ""); err != nil && errors.Cause(err) != define.ErrDetach { + if err := terminal.StartAttachCtr(ctx, ctr, options.Stdout, options.Stderr, options.Stdin, options.DetachKeys, options.SigProxy, false, ctr.PodID() != ""); err != nil && errors.Cause(err) != define.ErrDetach { return errors.Wrapf(err, "error attaching to container %s", ctr.ID()) } return nil |