Removed Redundant call

This commit is contained in:
vesem 2021-12-26 18:52:03 -05:00
parent ce1472df66
commit 77a1ab2e8c

View File

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