From 77a1ab2e8c07d1dd228c4dee4cbcf5242af19199 Mon Sep 17 00:00:00 2001 From: vesem Date: Sun, 26 Dec 2021 18:52:03 -0500 Subject: [PATCH] Removed Redundant call --- redisLoadTest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redisLoadTest.go b/redisLoadTest.go index c9b85ae..f9d7b61 100644 --- a/redisLoadTest.go +++ b/redisLoadTest.go @@ -185,7 +185,7 @@ func main() { burst := *burstPtr keyMaxValue := *maxEntriesPtr durationInt := *testDurationPtr - duration := time.Duration(time.Second * time.Duration(durationInt)) + duration := time.Second * time.Duration(durationInt) pool := newPool(host) client := pool.Get()