1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Fixed redirects logic - 'max' means less that or equals to

This commit is contained in:
Dimitrij Denissenko
2015-03-19 11:40:18 +00:00
parent f8b9d6219b
commit e662309bf4

View File

@ -86,7 +86,7 @@ func (c *ClusterClient) process(cmd Cmder) {
tried := make(map[string]struct{}, len(c.addrs))
addr := c.getMasterAddrBySlot(hashSlot)
for attempt := 0; attempt < c.opt.getMaxRedirects(); attempt++ {
for attempt := 0; attempt <= c.opt.getMaxRedirects(); attempt++ {
tried[addr] = struct{}{}
// Pick the connection, process request