This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit e757c9f320f747b5ed19282b0e0d8d60b62d6cf6 Author: aldettinger <[email protected]> AuthorDate: Tue Jul 12 15:42:09 2022 +0200 consul: Remove usage of deprecated method in itests --- .../apache/camel/quarkus/component/consul/it/ConsulTestResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTestResource.java b/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTestResource.java index 596b577b16..43f1d8956c 100644 --- a/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTestResource.java +++ b/integration-tests/consul/src/test/java/org/apache/camel/quarkus/component/consul/it/ConsulTestResource.java @@ -49,7 +49,7 @@ public class ConsulTestResource implements QuarkusTestResourceLifecycleManager { return CollectionHelper.mapOf( "camel.consul.test-url", String.format("http://%s:%d", - container.getContainerIpAddress(), + container.getHost(), container.getMappedPort(CONTAINER_PORT))); } catch (Exception e) { throw new RuntimeException(e);
