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:03 UTC

[camel] branch CAMEL-18660/downgrade-localstack created (now d0f0d01e4c0)

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


      at d0f0d01e4c0 CAMEL-18660: Downgrade localstack to prevent rate limit issues

This branch includes the following new commits:

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

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.



[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 d0f0d01e4c0ac622fd4c5260700c44382ffbb9a9
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;