Skip to content

Commit a2a09ff

Browse files
committed
Benchmark: Close redis client on each test iteration (-count=10)
1 parent c164784 commit a2a09ff

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

httprateredis.go

+4
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,10 @@ func (c *redisCounter) IsFallbackActivated() bool {
182182
return c.fallbackActivated.Load()
183183
}
184184

185+
func (c *redisCounter) Close() error {
186+
return c.client.Close()
187+
}
188+
185189
func (c *redisCounter) shouldFallback(err error) bool {
186190
if err == nil {
187191
return false

httprateredis_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func TestRedisCounter(t *testing.T) {
2626
if err != nil {
2727
t.Fatalf("redis not available: %v", err)
2828
}
29+
defer limitCounter.Close()
2930

3031
limitCounter.Config(1000, time.Minute)
3132

@@ -166,6 +167,7 @@ func BenchmarkLocalCounter(b *testing.B) {
166167
if err != nil {
167168
b.Fatalf("redis not available: %v", err)
168169
}
170+
defer limitCounter.Close()
169171

170172
limitCounter.Config(1000, time.Minute)
171173

0 commit comments

Comments
 (0)