Skip to content

Commit a0dafe9

Browse files
committed
Update Redis in CI, lower #no of connections
1 parent a2a09ff commit a0dafe9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
services:
1313
redis:
14-
image: redis:6
14+
image: redis:7
1515
ports:
1616
- 6379:6379
1717

httprateredis_test.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ func TestRedisCounter(t *testing.T) {
1515
limitCounter, err := httprateredis.NewRedisLimitCounter(&httprateredis.Config{
1616
Host: "localhost",
1717
Port: 6379,
18-
MaxIdle: 100,
19-
MaxActive: 200,
18+
MaxIdle: 0,
19+
MaxActive: 2,
2020
DBIndex: 0,
2121
ClientName: "httprateredis_test",
2222
PrefixKey: fmt.Sprintf("httprate:test:%v", rand.Int31n(100000)), // Unique Redis key for each test
@@ -162,7 +162,10 @@ func BenchmarkLocalCounter(b *testing.B) {
162162
DBIndex: 0,
163163
ClientName: "httprateredis_test",
164164
PrefixKey: fmt.Sprintf("httprate:test:%v", rand.Int31n(100000)), // Unique key for each test
165+
MaxActive: 10,
166+
MaxIdle: 0,
165167
FallbackDisabled: true,
168+
FallbackTimeout: 5 * time.Second,
166169
})
167170
if err != nil {
168171
b.Fatalf("redis not available: %v", err)

0 commit comments

Comments
 (0)