Skip to content

Commit

Permalink
Merge 758be27 into e4e5618
Browse files Browse the repository at this point in the history
  • Loading branch information
jvrlic committed Feb 17, 2021
2 parents e4e5618 + 758be27 commit 34a8149
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public void initialize(ConfigurableApplicationContext configurableApplicationCon
environment.getProperty("testcontainers.rabbit.docker.image"))
.map(RabbitContainerWrapper::new)
.orElseGet(
() -> new RabbitContainerWrapper("rabbitmq:3.6.14-alpine"));
() -> new RabbitContainerWrapper("rabbitmq:3.8.9-alpine"));

start(container);
container.waitingFor(Wait.forListeningPort());
start(container);

TestPropertyValues values = TestPropertyValues.of(
String.format("spring.rabbitmq.addresses=%s:%d", container.getContainerIpAddress(),
Expand Down

0 comments on commit 34a8149

Please sign in to comment.