fix: ignore TLS handshake error. (#4227)

Fixes #4200
master
Bala FA 8 years ago committed by Harshavardhana
parent 9b58a669e5
commit 2b78444056
  1. 2
      cmd/server-mux.go

@ -268,7 +268,7 @@ func newListenerMux(listener net.Listener, config *tls.Config) *ListenerMux {
// is a TLS connection, if not we should close and reject
// such a connection.
if cerr = tlsConn.Handshake(); cerr != nil {
errorIf(cerr, "TLS handshake failed")
// Close for junk message.
tlsConn.Close()
return
}

Loading…
Cancel
Save