Merge pull request #7955 from ParkerVR/7751-alt

Container detach newlines
This commit is contained in:
OpenShift Merge Robot
2020-10-13 12:31:14 -04:00
committed by GitHub

View File

@ -588,6 +588,7 @@ func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrID string,
if err != nil && errors.Cause(err) != define.ErrDetach {
return errors.Wrapf(err, "error attaching to container %s", ctr.ID())
}
os.Stdout.WriteString("\n")
return nil
}