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
1 changed files with 1 additions and 1 deletions

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