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 14aa056b7868679e24fcf33bacc0be5d7ac5b03c
Author: aldettinger <[email protected]>
AuthorDate: Tue Jul 12 15:36:28 2022 +0200

    fhir: Fix usage of deprecated methods in itests
---
 .../org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java
 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java
index 0ea1d8a093..9d67ec1eb4 100644
--- 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java
+++ 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirTestResource.java
@@ -69,7 +69,7 @@ public class FhirTestResource implements 
QuarkusTestResourceLifecycleManager {
 
             return CollectionHelper.mapOf(
                     String.format("camel.fhir.%s.test-url", 
fhirVersion.simpleVersion()),
-                    
fhirVersion.getServerUrl(container.getContainerIpAddress(), 
container.getMappedPort(CONTAINER_PORT)));
+                    fhirVersion.getServerUrl(container.getHost(), 
container.getMappedPort(CONTAINER_PORT)));
         } catch (Exception e) {
             throw new RuntimeException(e);
         }

Reply via email to