You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/10/27 17:14:46 UTC

[camel] branch CAMEL-18660/downgrade-localstack updated (d0f0d01e4c0 -> bb608b8b414)

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

nfilotto pushed a change to branch CAMEL-18660/downgrade-localstack
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard d0f0d01e4c0 CAMEL-18660: Downgrade localstack to prevent rate limit issues
     new bb608b8b414 CAMEL-18660: Downgrade LocalStack to prevent rate limit issues

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d0f0d01e4c0)
            \
             N -- N -- N   refs/heads/CAMEL-18660/downgrade-localstack (bb608b8b414)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:


[camel] 01/01: CAMEL-18660: Downgrade LocalStack to prevent rate limit issues

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

nfilotto pushed a commit to branch CAMEL-18660/downgrade-localstack
in repository https://gitbox.apache.org/repos/asf/camel.git

commit bb608b8b41404ca101233418df9a9815e3e7c3e7
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Thu Oct 27 19:13:41 2022 +0200

    CAMEL-18660: Downgrade LocalStack to prevent rate limit issues
---
 .../java/org/apache/camel/test/infra/aws2/services/AWSContainer.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSContainer.java b/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSContainer.java
index e941a71d0c3..d37ca43c055 100644
--- a/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSContainer.java
+++ b/test-infra/camel-test-infra-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSContainer.java
@@ -36,7 +36,9 @@ import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider;
  behave as in runtime.
  */
 public class AWSContainer extends GenericContainer<AWSContainer> {
-    public static final String LOCALSTACK_CONTAINER = "localstack/localstack:1.2.0";
+
+    // Keep using 1.1.0 as long as https://github.com/localstack/localstack/issues/7103 is not fixed and released.
+    public static final String LOCALSTACK_CONTAINER = "localstack/localstack:1.1.0";
 
     private static final Logger LOG = LoggerFactory.getLogger(AWSLocalContainerService.class);
     private static final int SERVICE_PORT = 4566;