1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #30088 from tonistiigi/fifo-close-early

Close stdout/stderr fifo as soon as possible
This commit is contained in:
Kenfe-Mickaël Laventure 2017-01-12 09:29:39 -08:00 committed by GitHub
commit f018c0dfff

View file

@ -113,12 +113,13 @@ func (c *Config) CloseStreams() error {
// CopyToPipe connects streamconfig with a libcontainerd.IOPipe
func (c *Config) CopyToPipe(iop libcontainerd.IOPipe) {
copyFunc := func(w io.Writer, r io.Reader) {
copyFunc := func(w io.Writer, r io.ReadCloser) {
c.Add(1)
go func() {
if _, err := pools.Copy(w, r); err != nil {
logrus.Errorf("stream copy error: %+v", err)
}
r.Close()
c.Done()
}()
}