From 24da38fdd1cdf7ba6189c05fe8fdd628ae6d1a63 Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Wed, 16 Nov 2022 11:47:34 -0500 Subject: [PATCH] Removed linter comment --- pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.go b/pool.go index 70c1def..3b79dd5 100644 --- a/pool.go +++ b/pool.go @@ -82,7 +82,7 @@ func Connect(ctx context.Context, redisURL string, // Create the pool redisPool := redis.Pool{ - Dial: buildDialer(redisURL, options...), //nolint:contextcheck // Cannot fix this lint issue + Dial: buildDialer(redisURL, options...), IdleTimeout: idleTimeout, MaxActive: maxActiveConnections, MaxConnLifetime: maxConnLifetime,