1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-07 12:42:55 +03:00
This commit is contained in:
Poloskin Valentin Georgievich
2017-04-02 17:10:47 +03:00
parent c86c158b1f
commit 80673992e6
4 changed files with 4 additions and 4 deletions

View File

@@ -650,7 +650,7 @@ func (c *ClusterClient) reaper(idleCheckFrequency time.Duration) {
ticker := time.NewTicker(idleCheckFrequency)
defer ticker.Stop()
for _ = range ticker.C {
for range ticker.C {
nodes, err := c.nodes.All()
if err != nil {
break