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

Client TxPipeline method should also return a Pipeliner

This commit is contained in:
Felipe Cavalcanti
2017-05-03 10:48:12 -03:00
parent 3f43c7448b
commit 7379f211a4
2 changed files with 2 additions and 2 deletions

View File

@ -342,7 +342,7 @@ func (c *Client) TxPipelined(fn func(Pipeliner) error) ([]Cmder, error) {
}
// TxPipeline acts like Pipeline, but wraps queued commands with MULTI/EXEC.
func (c *Client) TxPipeline() *Pipeline {
func (c *Client) TxPipeline() Pipeliner {
pipe := Pipeline{
exec: c.pipelineExecer(c.txPipelineProcessCmds),
}