Commit 6dddafe7 authored by Di Xu's avatar Di Xu

fix bad output format for attaching pods

parent e7ad6e60
...@@ -259,11 +259,6 @@ func (p *AttachOptions) Run() error { ...@@ -259,11 +259,6 @@ func (p *AttachOptions) Run() error {
} }
fn := func() error { fn := func() error {
if !p.Quiet && stderr != nil {
fmt.Fprintln(stderr, "If you don't see a command prompt, try pressing enter.")
}
restClient, err := restclient.RESTClientFor(p.Config) restClient, err := restclient.RESTClientFor(p.Config)
if err != nil { if err != nil {
return err return err
...@@ -285,6 +280,9 @@ func (p *AttachOptions) Run() error { ...@@ -285,6 +280,9 @@ func (p *AttachOptions) Run() error {
return p.Attach.Attach("POST", req.URL(), p.Config, p.In, p.Out, p.Err, t.Raw, sizeQueue) return p.Attach.Attach("POST", req.URL(), p.Config, p.In, p.Out, p.Err, t.Raw, sizeQueue)
} }
if !p.Quiet && stderr != nil {
fmt.Fprintln(stderr, "If you don't see a command prompt, try pressing enter.")
}
if err := t.Safe(fn); err != nil { if err := t.Safe(fn); err != nil {
return err return err
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment