mirror of https://github.com/go-redis/redis.git
chore: fix linter
This commit is contained in:
parent
2ec03d9b37
commit
eab588ddb5
4
ring.go
4
ring.go
|
@ -758,9 +758,9 @@ func (c *Ring) generalProcessPipeline(
|
|||
|
||||
if tx {
|
||||
cmds = wrapMultiExec(ctx, cmds)
|
||||
shard.Client.hooks.processTxPipeline(ctx, cmds)
|
||||
_ = shard.Client.hooks.processTxPipeline(ctx, cmds)
|
||||
} else {
|
||||
shard.Client.hooks.processPipeline(ctx, cmds)
|
||||
_ = shard.Client.hooks.processPipeline(ctx, cmds)
|
||||
}
|
||||
}(hash, cmds)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue