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 2022/08/30 11:20:54 UTC

[camel-quarkus] 02/02: lra: fix usage of deprecated method in test harness

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 6d675b2ee9bd447b8e71c50c33af09967bf128e1
Author: aldettinger <al...@gmail.com>
AuthorDate: Tue Aug 30 09:16:33 2022 +0200

    lra: fix usage of deprecated method in test harness
---
 .../java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java b/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java
index 191c1b11f0..bd5f6f73a1 100644
--- a/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java
+++ b/integration-tests/lra/src/test/java/org/apache/camel/quarkus/component/lra/it/LraTestResource.java
@@ -58,7 +58,7 @@ public class LraTestResource implements QuarkusTestResourceLifecycleManager {
 
             return CollectionHelper.mapOf(
                     "camel.lra.coordinator-url",
-                    String.format("http://%s:%d", container.getContainerIpAddress(), lraPort),
+                    String.format("http://%s:%d", container.getHost(), lraPort),
                     "camel.lra.local-participant-url",
                     String.format("http://%s:%s", hostname,
                             System.getProperty("quarkus.http.test-port", "8081")));