mirror of https://github.com/go-redis/redis.git
Merge pull request #154 from arnaudbriche/master
Add MaxRetries to FailoverOptions
This commit is contained in:
commit
73e1e9f501
|
@ -31,6 +31,8 @@ type FailoverOptions struct {
|
|||
PoolSize int
|
||||
PoolTimeout time.Duration
|
||||
IdleTimeout time.Duration
|
||||
|
||||
MaxRetries int
|
||||
}
|
||||
|
||||
func (opt *FailoverOptions) options() *Options {
|
||||
|
@ -47,6 +49,8 @@ func (opt *FailoverOptions) options() *Options {
|
|||
PoolSize: opt.PoolSize,
|
||||
PoolTimeout: opt.PoolTimeout,
|
||||
IdleTimeout: opt.IdleTimeout,
|
||||
|
||||
MaxRetries: opt.MaxRetries,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue