diff --git a/sshproxy.go b/sshproxy.go index cc8f5da..a32890d 100644 --- a/sshproxy.go +++ b/sshproxy.go @@ -81,7 +81,7 @@ func New(keyDir, shell string, passEnv bool, shellCreds *syscall.Credential, ver } func (s *Server) handleError(err error, tags map[string]string) { - if s.errorHandler != nil { + if s.errorHandler != nil && err.Error() != "EOF" { s.errorHandler(err, tags) } }