Update Redis client used for bucket notifications (#7213)

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
This commit is contained in:
Nitish Tiwari
2019-02-11 19:06:27 +05:30
committed by GitHub
parent a8cd70f3e5
commit 13c3b8afe2
19 changed files with 1379 additions and 624 deletions
+9
View File
@@ -0,0 +1,9 @@
// +build go1.8
package redis
import "crypto/tls"
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
return cfg.Clone()
}