File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,10 @@ func (c *redisCounter) IsFallbackActivated() bool {
182
182
return c .fallbackActivated .Load ()
183
183
}
184
184
185
+ func (c * redisCounter ) Close () error {
186
+ return c .client .Close ()
187
+ }
188
+
185
189
func (c * redisCounter ) shouldFallback (err error ) bool {
186
190
if err == nil {
187
191
return false
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ func TestRedisCounter(t *testing.T) {
26
26
if err != nil {
27
27
t .Fatalf ("redis not available: %v" , err )
28
28
}
29
+ defer limitCounter .Close ()
29
30
30
31
limitCounter .Config (1000 , time .Minute )
31
32
@@ -166,6 +167,7 @@ func BenchmarkLocalCounter(b *testing.B) {
166
167
if err != nil {
167
168
b .Fatalf ("redis not available: %v" , err )
168
169
}
170
+ defer limitCounter .Close ()
169
171
170
172
limitCounter .Config (1000 , time .Minute )
171
173
You can’t perform that action at this time.
0 commit comments