Browse Source

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

Guillaume J. Charmes 12 years ago
parent
commit
81eac415ad
1 changed files with 0 additions and 1 deletions
  1. 0 1
      commands.go

+ 0 - 1
commands.go

@@ -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
 			})
 		}