mirror of https://github.com/docker/docs.git
Don't pass logs=1 to attach request
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> (github: aanand)
This commit is contained in:
parent
36c58f3534
commit
1f8bc3ddfb
|
@ -128,7 +128,7 @@ func (c *container) attach(ctx *beam.Message) error {
|
|||
return err
|
||||
}
|
||||
|
||||
path := fmt.Sprintf("/containers/%s/attach?stdout=1&stderr=0&stream=1&logs=1", c.id)
|
||||
path := fmt.Sprintf("/containers/%s/attach?stdout=1&stderr=0&stream=1", c.id)
|
||||
|
||||
stdoutR, stdoutW := io.Pipe()
|
||||
_, stderrW := io.Pipe()
|
||||
|
|
Loading…
Reference in New Issue