@@ -725,21 +725,13 @@ func (c *Conn) Process(ctx context.Context, cmd Cmder) error {
725
725
return err
726
726
}
727
727
728
- func (c * Conn ) processPipeline (ctx context.Context , cmds []Cmder ) error {
729
- return c .hooks .processPipeline (ctx , cmds )
730
- }
731
-
732
- func (c * Conn ) processTxPipeline (ctx context.Context , cmds []Cmder ) error {
733
- return c .hooks .processTxPipeline (ctx , cmds )
734
- }
735
-
736
728
func (c * Conn ) Pipelined (ctx context.Context , fn func (Pipeliner ) error ) ([]Cmder , error ) {
737
729
return c .Pipeline ().Pipelined (ctx , fn )
738
730
}
739
731
740
732
func (c * Conn ) Pipeline () Pipeliner {
741
733
pipe := Pipeline {
742
- exec : c .processPipeline ,
734
+ exec : c .hooks . processPipeline ,
743
735
}
744
736
pipe .init ()
745
737
return & pipe
@@ -752,7 +744,10 @@ func (c *Conn) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmd
752
744
// TxPipeline acts like Pipeline, but wraps queued commands with MULTI/EXEC.
753
745
func (c * Conn ) TxPipeline () Pipeliner {
754
746
pipe := Pipeline {
755
- exec : c .processTxPipeline ,
747
+ exec : func (ctx context.Context , cmds []Cmder ) error {
748
+ cmds = wrapMultiExec (ctx , cmds )
749
+ return c .hooks .processTxPipeline (ctx , cmds )
750
+ },
756
751
}
757
752
pipe .init ()
758
753
return & pipe
0 commit comments