Skip to content

Commit

Permalink
feat(309774): replace Redis container images with Valkey
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrigorev committed Feb 5, 2025
1 parent 0d5ef20 commit 1a344b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions redisBackend_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ func TestMain(m *testing.M) {
func setup() {
ctx := context.Background()
req := testcontainers.ContainerRequest{
Image: "redis:latest",
Image: "valkey/valkey:7",
ExposedPorts: []string{"6379/tcp"},
WaitingFor: wait.ForLog("Ready to accept connections"),
WaitingFor: wait.ForAll(
wait.ForLog("Ready to accept connections"),
wait.ForListeningPort("6379/tcp")),
}

var err error
Expand Down

0 comments on commit 1a344b4

Please sign in to comment.