Skip to content

Commit 26e0c49

Browse files
authored
Update pubsub.go (redis#3042)
Change context.Background() to ctx
1 parent 4cf03db commit 26e0c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pubsub.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func (c *PubSub) conn(ctx context.Context, newChannels []string) (*pool.Conn, er
8484
}
8585

8686
func (c *PubSub) writeCmd(ctx context.Context, cn *pool.Conn, cmd Cmder) error {
87-
return cn.WithWriter(context.Background(), c.opt.WriteTimeout, func(wr *proto.Writer) error {
87+
return cn.WithWriter(ctx, c.opt.WriteTimeout, func(wr *proto.Writer) error {
8888
return writeCmd(wr, cmd)
8989
})
9090
}

0 commit comments

Comments
 (0)