Skip to content

Commit

Permalink
Merge pull request #1985 from alphagov/pp-12557/update-redis-version-…
Browse files Browse the repository at this point in the history
…in-tests

PP-12557: Upgrade integration test redis version
  • Loading branch information
jfharden committed May 16, 2024
2 parents b95ce0d + b243bcf commit cd9d725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/uk/gov/pay/api/it/rule/RedisContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class RedisContainer {

static GenericContainer<?> getOrCreateRedisContainer() {
if (REDIS_CONTAINER == null) {
REDIS_CONTAINER = new GenericContainer<>("redis:5.0.6") // elasticache engine version
REDIS_CONTAINER = new GenericContainer<>("redis:7") // elasticache engine version
.withExposedPorts(PORT)
.waitingFor(Wait.forLogMessage(".*Ready to accept connections.*", 1));

Expand Down

0 comments on commit cd9d725

Please sign in to comment.