You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/11 13:11:13 UTC

[camel] branch master updated (1d85a60 -> d335e5b)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 1d85a60  Document update (#4201)
     new 7019fbe  Regen catalog
     new d335e5b  Camel-AWS2-S3: Use localstack edge service

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../resources/org/apache/camel/catalog/docs/multicast-eip.adoc        | 2 +-
 .../org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[camel] 01/02: Regen catalog

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7019fbecaa74e341d9dc411158ab871d9d36b2a2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Sep 11 15:00:47 2020 +0200

    Regen catalog
---
 .../resources/org/apache/camel/catalog/docs/multicast-eip.adoc          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/multicast-eip.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/multicast-eip.adoc
index 132df0e..bc5ae8a 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/multicast-eip.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/multicast-eip.adoc
@@ -75,7 +75,7 @@ input message and return as response; its the aggregate method with 3 exchange p
 
 The mutlicast EIP will by default continue to process
 the entire exchange even in case one of the
-multicasted messages will thrown an exception during routing. 
+multicasted messages will throw an exception during routing. 
 For example if you want to multicast to 3 destinations and the 2nd
 destination fails by an exception. What Camel does by default is to
 process the remainder destinations. You have the chance to remedy or


[camel] 02/02: Camel-AWS2-S3: Use localstack edge service

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit d335e5b6bf43c6b20faf47fa54eb2915c78f655b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Sep 11 15:05:39 2020 +0200

    Camel-AWS2-S3: Use localstack edge service
---
 .../org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java
index a123d39..ae5b4ba 100644
--- a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java
+++ b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/localstack/Aws2S3BaseTest.java
@@ -44,7 +44,7 @@ public class Aws2S3BaseTest extends ContainerAwareTestSupport {
         return new GenericContainer(CONTAINER_IMAGE)
                 .withNetworkAliases(CONTAINER_NAME)
                 .withEnv("SERVICES", "s3")
-                .withExposedPorts(4572)
+                .withExposedPorts(4566)
                 .waitingFor(Wait.forListeningPort())
                 .waitingFor(Wait.forLogMessageContaining("Ready.", 1));
     }
@@ -53,7 +53,7 @@ public class Aws2S3BaseTest extends ContainerAwareTestSupport {
         return String.format(
                 "%s:%d",
                 getContainerHost(CONTAINER_NAME),
-                getContainerPort(CONTAINER_NAME, 4572));
+                getContainerPort(CONTAINER_NAME, 4566));
     }
 
     public S3Client getS3Client() {