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:21 UTC

[camel] 02/04: Camel-testcontainer-spring: 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 7e2f933789505429fabd48d128b649a6932b5fdc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 20 09:13:06 2019 +0100

    Camel-testcontainer-spring: Use consul docker image 1.6.2
---
 .../test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-testcontainers-spring/src/test/java/org/apache/camel/test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java b/components/camel-testcontainers-spring/src/test/java/org/apache/camel/test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java
index 1cf4b84..e25725e 100644
--- a/components/camel-testcontainers-spring/src/test/java/org/apache/camel/test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java
+++ b/components/camel-testcontainers-spring/src/test/java/org/apache/camel/test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java
@@ -42,7 +42,7 @@ public class ContainerAwareSpringTestSupportIT extends ContainerAwareSpringTestS
 
     @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))