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 612031ac06f7a99b4d40c229f26104a7ddb8aa11
Author: aldettinger <[email protected]>
AuthorDate: Tue Jul 12 15:47:24 2022 +0200

    influxdb: Remove usage of deprecated method in itests
---
 .../camel/quarkus/component/influxdb/it/InfluxdbTestResource.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTestResource.java
 
b/integration-tests/influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTestResource.java
index 164cd1adec..7af5c07001 100644
--- 
a/integration-tests/influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTestResource.java
+++ 
b/integration-tests/influxdb/src/test/java/org/apache/camel/quarkus/component/influxdb/it/InfluxdbTestResource.java
@@ -48,7 +48,7 @@ public class InfluxdbTestResource implements 
QuarkusTestResourceLifecycleManager
 
             return CollectionHelper.mapOf(
                     InfluxdbResource.INFLUXDB_CONNECTION_PROPERTY,
-                    "http://"; + String.format("%s:%s", 
container.getContainerIpAddress(),
+                    "http://"; + String.format("%s:%s", container.getHost(),
                             container.getMappedPort(INFLUXDB_PORT)));
         } catch (Exception e) {
             throw new RuntimeException(e);

Reply via email to