Skip to content

Commit

Permalink
Merge pull request redis#545 from FlamingTree/master
Browse files Browse the repository at this point in the history
pipelineReadCmds always retry=true, maybe bug
  • Loading branch information
vmihailenco authored Apr 13, 2017
2 parents 7475b2f + d910e51 commit 62ecc61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func pipelineReadCmds(cn *pool.Conn, cmds []Cmder) (retry bool, firstErr error)
firstErr = err
}
}
return false, firstErr
return
}

func (c *baseClient) txPipelineProcessCmds(cn *pool.Conn, cmds []Cmder) (bool, error) {
Expand Down

0 comments on commit 62ecc61

Please sign in to comment.