mirror of
https://github.com/minio/minio.git
synced 2025-01-15 16:53:16 -05:00
13c3b8afe2
Current Redis client used https://github.com/garyburd/redigo/ has been archived and further development is done at https://github.com/gomodule/redigo This commit updates the client library accordingly. Fixes #6392
10 lines
126 B
Go
10 lines
126 B
Go
// +build go1.8
|
|
|
|
package redis
|
|
|
|
import "crypto/tls"
|
|
|
|
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
|
|
return cfg.Clone()
|
|
}
|