mirror of https://github.com/go-redis/redis.git
Merge pull request #882 from go-redis/fix/sentinel-options
Copy TLSConfig to SentinelClient options
This commit is contained in:
commit
55f1f4681d
|
@ -222,6 +222,8 @@ func (c *sentinelFailover) masterAddr() (string, error) {
|
|||
sentinel := NewSentinelClient(&Options{
|
||||
Addr: sentinelAddr,
|
||||
|
||||
MaxRetries: c.opt.MaxRetries,
|
||||
|
||||
DialTimeout: c.opt.DialTimeout,
|
||||
ReadTimeout: c.opt.ReadTimeout,
|
||||
WriteTimeout: c.opt.WriteTimeout,
|
||||
|
@ -229,6 +231,9 @@ func (c *sentinelFailover) masterAddr() (string, error) {
|
|||
PoolSize: c.opt.PoolSize,
|
||||
PoolTimeout: c.opt.PoolTimeout,
|
||||
IdleTimeout: c.opt.IdleTimeout,
|
||||
IdleCheckFrequency: c.opt.IdleCheckFrequency,
|
||||
|
||||
TLSConfig: c.opt.TLSConfig,
|
||||
})
|
||||
|
||||
masterAddr, err := sentinel.GetMasterAddrByName(c.masterName).Result()
|
||||
|
|
Loading…
Reference in New Issue