mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix typo
This commit is contained in:
parent
63e80384ea
commit
7169212683
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ func (container *Container) Attach(stdin io.ReadCloser, stdinCloser io.Closer, s
|
|||
defer stdinCloser.Close()
|
||||
}
|
||||
|
||||
if cStderr, err := container.StdoutPipe(); err != nil {
|
||||
if cStderr, err := container.StderrPipe(); err != nil {
|
||||
utils.Debugf("Error stdout pipe")
|
||||
} else {
|
||||
io.Copy(&utils.NopWriter{}, cStderr)
|
||||
|
|
Loading…
Reference in a new issue