Do not close the stdin of the process when the client deattaches himslef

This commit is contained in:
Guillaume J. Charmes 2013-03-29 09:42:42 -07:00
parent 0b2eee8b33
commit 81eac415ad
1 changed files with 0 additions and 1 deletions

View File

@ -909,7 +909,6 @@ func (srv *Server) CmdRun(stdin io.ReadCloser, stdout io.Writer, args ...string)
if !config.Detach {
Go(func() error {
_, err := io.Copy(cmdStdin, stdin)
cmdStdin.Close()
return err
})
}