mirror of https://github.com/go-redis/redis.git
Merge pull request #400 from yyoshiki41/refactor/cluster
simplify if condition
This commit is contained in:
commit
21cae7f9ab
|
@ -653,7 +653,9 @@ func (c *ClusterClient) execClusterCmds(
|
|||
cmd.reset()
|
||||
failedCmds[nil] = append(failedCmds[nil], cmds[i:]...)
|
||||
break
|
||||
} else if moved, ask, addr := internal.IsMovedError(err); moved {
|
||||
}
|
||||
moved, ask, addr := internal.IsMovedError(err)
|
||||
if moved {
|
||||
c.lazyReloadSlots()
|
||||
cmd.reset()
|
||||
node, err := c.nodeByAddr(addr)
|
||||
|
|
Loading…
Reference in New Issue