Skip to content

Commit eab588d

Browse files
committed
chore: fix linter
1 parent 2ec03d9 commit eab588d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ring.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,9 +758,9 @@ func (c *Ring) generalProcessPipeline(
758758

759759
if tx {
760760
cmds = wrapMultiExec(ctx, cmds)
761-
shard.Client.hooks.processTxPipeline(ctx, cmds)
761+
_ = shard.Client.hooks.processTxPipeline(ctx, cmds)
762762
} else {
763-
shard.Client.hooks.processPipeline(ctx, cmds)
763+
_ = shard.Client.hooks.processPipeline(ctx, cmds)
764764
}
765765
}(hash, cmds)
766766
}

0 commit comments

Comments
 (0)