From eab588ddb598fd71f5a3714b0f6c2618bca61cda Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Wed, 12 Oct 2022 15:14:26 +0300 Subject: [PATCH] chore: fix linter --- ring.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ring.go b/ring.go index 1cb0d221..fee2fe89 100644 --- a/ring.go +++ b/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) }