mirror of
https://github.com/minio/minio.git
synced 2025-11-09 21:49:46 -05:00
connection muxer should use bufio.Reader to be simpler. (#3177)
This commit is contained in:
@@ -86,10 +86,7 @@ func isKeyFileExists() bool {
|
||||
|
||||
// isSSL - returns true with both cert and key exists.
|
||||
func isSSL() bool {
|
||||
if isCertFileExists() && isKeyFileExists() {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return isCertFileExists() && isKeyFileExists()
|
||||
}
|
||||
|
||||
// Reads certificated file and returns a list of parsed certificates.
|
||||
|
||||
Reference in New Issue
Block a user