Kaynağa Gözat

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

Guillaume J. Charmes 12 yıl önce
ebeveyn
işleme
81eac415ad
1 değiştirilmiş dosya ile 0 ekleme ve 1 silme
  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
 			})
 		}