mirror of https://github.com/go-redis/redis.git
Merge pull request #1589 from williamkinney/maxretry
add disable/-1 comment to max retries
This commit is contained in:
commit
b3e0aa270a
|
@ -58,7 +58,7 @@ type Options struct {
|
||||||
DB int
|
DB int
|
||||||
|
|
||||||
// Maximum number of retries before giving up.
|
// Maximum number of retries before giving up.
|
||||||
// Default is 3 retries.
|
// Default is 3 retries; -1 (not 0) disables retries.
|
||||||
MaxRetries int
|
MaxRetries int
|
||||||
// Minimum backoff between each retry.
|
// Minimum backoff between each retry.
|
||||||
// Default is 8 milliseconds; -1 disables backoff.
|
// Default is 8 milliseconds; -1 disables backoff.
|
||||||
|
|
Loading…
Reference in New Issue