Don't pass logs=1 to attach request

Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> (github: aanand)
This commit is contained in:
Aanand Prasad 2014-06-05 15:56:05 -07:00 committed by Solomon Hykes
parent 36c58f3534
commit 1f8bc3ddfb
1 changed files with 1 additions and 1 deletions

View File

@ -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()