Merge pull request #1456 from dmitsh/ds-sentinel-password

add Sentinel password to UniversalOptions
This commit is contained in:
Vladimir Mihailenco 2020-09-01 09:28:36 +03:00 committed by GitHub
commit 6115a783e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -25,6 +25,7 @@ type UniversalOptions struct {
Username string Username string
Password string Password string
SentinelPassword string
MaxRetries int MaxRetries int
MinRetryBackoff time.Duration MinRetryBackoff time.Duration
@ -108,6 +109,7 @@ func (o *UniversalOptions) Failover() *FailoverOptions {
DB: o.DB, DB: o.DB,
Username: o.Username, Username: o.Username,
Password: o.Password, Password: o.Password,
SentinelPassword: o.SentinelPassword,
MaxRetries: o.MaxRetries, MaxRetries: o.MaxRetries,
MinRetryBackoff: o.MinRetryBackoff, MinRetryBackoff: o.MinRetryBackoff,