This is an automated email from the ASF dual-hosted git repository.
nfilotto pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 4aaa0d6c762 CAMEL-18660: Upgrade LocalStack to 1.3.0 that contains
kinesis-mock (#8884)
4aaa0d6c762 is described below
commit 4aaa0d6c7627c97ae75d31ea63ccf212f4a0c4c0
Author: Nicolas Filotto <[email protected]>
AuthorDate: Mon Dec 12 18:21:38 2022 +0100
CAMEL-18660: Upgrade LocalStack to 1.3.0 that contains kinesis-mock (#8884)
## Motivation
The test `Kinesis2ConsumerHealthCustomClientTest systematically` fails on
Jenkins due to a rate limit issue caused by an incomplete docker image of
LocalStack.
## Modifications:
* Upgrade the version of the docker image of LocalStack to the most recent
version that contains kinesis-mock
---
.../java/org/apache/camel/test/infra/aws2/services/AWSContainer.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
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 d37ca43c055..3cd64d19254 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
@@ -37,8 +37,7 @@ import
software.amazon.awssdk.auth.credentials.AwsCredentialsProvider;
*/
public class AWSContainer extends GenericContainer<AWSContainer> {
- // 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";
+ public static final String LOCALSTACK_CONTAINER =
"localstack/localstack:1.3.0";
private static final Logger LOG =
LoggerFactory.getLogger(AWSLocalContainerService.class);
private static final int SERVICE_PORT = 4566;