Browse Source

Merge pull request #2432 from nd/develop

Fix #2431 - handle requests waiting for reply
pull/2440/merge
Unknwon 9 years ago
parent
commit
b33abc6280
  1. 1
      modules/ssh/ssh.go

1
modules/ssh/ssh.go

@ -91,6 +91,7 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) {
return return
} }
req.Reply(true, nil);
go io.Copy(input, ch) go io.Copy(input, ch)
io.Copy(ch, stdout) io.Copy(ch, stdout)
io.Copy(ch.Stderr(), stderr) io.Copy(ch.Stderr(), stderr)

Loading…
Cancel
Save