Discarding errors in CmdRun

Upstream-commit: a19a9e3ca81880f030a7621a9e03ffb63c95b1f1
Component: engine
This commit is contained in:
Guillaume J. Charmes
2013-04-02 12:21:35 -07:00
parent 9ff05ec38f
commit bfd11809a8
+3 -1
View File
@@ -930,7 +930,9 @@ func (srv *Server) CmdRun(stdin io.ReadCloser, stdout io.Writer, args ...string)
fmt.Fprintln(stdout, container.ShortId())
}
Debugf("Waiting for attach to return\n")
return <-attachErr
<-attachErr
// Expecting I/O pipe error, discarding
return nil
}
func NewServer() (*Server, error) {