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

pipelineReadCmds always retry=true, maybe bug

This commit is contained in:
shaoguang
2017-04-12 20:11:20 +08:00
parent 7475b2fb0a
commit d910e51498

View File

@ -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) {