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:
commit
f018c0dfff
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
}()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue