Skip to content

Commit

Permalink
CAMEL-13653: Upgraded to consul:1.5.1 image for remaining projects
Browse files Browse the repository at this point in the history
  • Loading branch information
aldettinger committed Jun 18, 2019
1 parent edd2411 commit 9ab7795
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.testcontainers.containers.GenericContainer;

public class ConsulTestSupport extends ContainerAwareTestSupport {
public static final String CONTAINER_IMAGE = "consul:1.0.7";
public static final String CONTAINER_IMAGE = "consul:1.5.1";
public static final String CONTAINER_NAME = "consul";
public static final String KV_PREFIX = "/camel";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void testPropertyPlaceholders() throws Exception {

@Override
protected GenericContainer<?> createContainer() {
return new GenericContainer("consul:1.0.7")
return new GenericContainer("consul:1.5.1")
.withNetworkAliases("myconsul")
.withExposedPorts(8500)
.waitingFor(Wait.forLogMessageContaining("Synced node info", 1))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testPropertyPlaceholders() throws Exception {

@Override
protected GenericContainer<?> createContainer() {
return new GenericContainer<>("consul:1.0.7")
return new GenericContainer<>("consul:1.5.1")
.withNetworkAliases("myconsul")
.withExposedPorts(8500)
.waitingFor(Wait.forLogMessageContaining("Synced node info", 1))
Expand Down

0 comments on commit 9ab7795

Please sign in to comment.