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:
parent
5710d68852
commit
8b26a9f71e
@ -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…
x
Reference in New Issue
Block a user