You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/20 08:31:22 UTC

[camel] 03/04: Camle-testcontainers-junit5: Use Consul Docker image 1.6.2

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f41c5cc54125e4e217f6acf7be214d5c5438ebbe
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 20 09:29:21 2019 +0100

    Camle-testcontainers-junit5: Use Consul Docker image 1.6.2
---
 .../camel/test/testcontainers/junit5/ContainerAwareTestSupportIT.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-testcontainers-junit5/src/test/java/org/apache/camel/test/testcontainers/junit5/ContainerAwareTestSupportIT.java b/components/camel-testcontainers-junit5/src/test/java/org/apache/camel/test/testcontainers/junit5/ContainerAwareTestSupportIT.java
index bd52c1b..3c3ed11 100644
--- a/components/camel-testcontainers-junit5/src/test/java/org/apache/camel/test/testcontainers/junit5/ContainerAwareTestSupportIT.java
+++ b/components/camel-testcontainers-junit5/src/test/java/org/apache/camel/test/testcontainers/junit5/ContainerAwareTestSupportIT.java
@@ -34,7 +34,7 @@ public class ContainerAwareTestSupportIT extends ContainerAwareTestSupport {
 
     @Override
     protected GenericContainer<?> createContainer() {
-        return new GenericContainer<>("consul:1.6.1")
+        return new GenericContainer<>("consul:1.6.2")
             .withNetworkAliases("myconsul")
             .withExposedPorts(8500)
             .waitingFor(Wait.forLogMessageContaining("Synced node info", 1))