You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2021/01/11 12:34:14 UTC

[camel] branch master updated: CAMEL-16014: fixed invalid AMQP endpoint for the Artemis test infra (#4860)

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

orpiske 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 1cc20d7  CAMEL-16014: fixed invalid AMQP endpoint for the Artemis test infra (#4860)
1cc20d7 is described below

commit 1cc20d70e8d93725cec9743956f5eccdea80b02e
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Mon Jan 11 13:33:42 2021 +0100

    CAMEL-16014: fixed invalid AMQP endpoint for the Artemis test infra (#4860)
---
 .../org/apache/camel/test/infra/artemis/services/ArtemisContainer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
index eee4009..50353ed 100644
--- a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
+++ b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisContainer.java
@@ -54,7 +54,7 @@ public class ArtemisContainer extends GenericContainer<ArtemisContainer> impleme
      * @return the end point URL as a string
      */
     public String amqpEndpoint() {
-        return String.format("tcp://%s:%d", getContainerIpAddress(), amqpPort());
+        return String.format("amqp://%s:%d", getContainerIpAddress(), amqpPort());
     }
 
     /**