1
0
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:
Vladimir Mihailenco
2022-10-12 15:14:26 +03:00
parent 2ec03d9b37
commit eab588ddb5

View File

@ -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)
} }