1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-17 20:17:02 +03:00

Add MaxRetries to FailoverOptions

This commit is contained in:
arnaud briche 2015-08-24 10:46:48 +02:00
parent 5710d68852
commit 8b26a9f71e

View File

@ -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,
}
}