mirror of
https://github.com/redis/go-redis.git
synced 2025-07-29 17:41:15 +03:00
chore: fix linter
This commit is contained in:
4
ring.go
4
ring.go
@ -758,9 +758,9 @@ func (c *Ring) generalProcessPipeline(
|
|||||||
|
|
||||||
if tx {
|
if tx {
|
||||||
cmds = wrapMultiExec(ctx, cmds)
|
cmds = wrapMultiExec(ctx, cmds)
|
||||||
shard.Client.hooks.processTxPipeline(ctx, cmds)
|
_ = shard.Client.hooks.processTxPipeline(ctx, cmds)
|
||||||
} else {
|
} else {
|
||||||
shard.Client.hooks.processPipeline(ctx, cmds)
|
_ = shard.Client.hooks.processPipeline(ctx, cmds)
|
||||||
}
|
}
|
||||||
}(hash, cmds)
|
}(hash, cmds)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user