You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2019/06/18 07:59:07 UTC

[camel] branch master updated: CAMEL-13653: Upgraded to consul:1.5.1 image for remaining projects

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9ab7795  CAMEL-13653: Upgraded to consul:1.5.1 image for remaining projects
9ab7795 is described below

commit 9ab77952cfb530f9f89e822bdda00600869bc7a2
Author: aldettinger <al...@gmail.com>
AuthorDate: Tue Jun 18 09:49:39 2019 +0200

    CAMEL-13653: Upgraded to consul:1.5.1 image for remaining projects
---
 .../test/java/org/apache/camel/component/consul/ConsulTestSupport.java  | 2 +-
 .../test/testcontainers/spring/ContainerAwareSpringTestSupportIT.java   | 2 +-
 .../apache/camel/test/testcontainers/ContainerAwareTestSupportIT.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-consul/src/test/java/org/apache/camel/component/consul/ConsulTestSupport.java b/components/camel-consul/src/test/java/org/apache/camel/component/consul/ConsulTestSupport.java
index e3ec1d9..19c6fac 100644
--- a/components/camel-consul/src/test/java/org/apache/camel/component/consul/ConsulTestSupport.java
+++ b/components/camel-consul/src/test/java/org/apache/camel/component/consul/ConsulTestSupport.java
@@ -30,7 +30,7 @@ import org.junit.rules.TestName;
 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";
 
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 1a2fea3..3e0420f 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.0.7")
+        return new GenericContainer("consul:1.5.1")
             .withNetworkAliases("myconsul")
             .withExposedPorts(8500)
             .waitingFor(Wait.forLogMessageContaining("Synced node info", 1))
diff --git a/components/camel-testcontainers/src/test/java/org/apache/camel/test/testcontainers/ContainerAwareTestSupportIT.java b/components/camel-testcontainers/src/test/java/org/apache/camel/test/testcontainers/ContainerAwareTestSupportIT.java
index 40cd84b..d776d88 100644
--- a/components/camel-testcontainers/src/test/java/org/apache/camel/test/testcontainers/ContainerAwareTestSupportIT.java
+++ b/components/camel-testcontainers/src/test/java/org/apache/camel/test/testcontainers/ContainerAwareTestSupportIT.java
@@ -34,7 +34,7 @@ public class ContainerAwareTestSupportIT extends ContainerAwareTestSupport {
 
     @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))