This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
The following commit(s) were added to refs/heads/main by this push:
new 18b1328f9f Pin CloudWatch LocalStack image to community-archive
18b1328f9f is described below
commit 18b1328f9f87dfba0172050db87caa07c9431576
Author: Croway <[email protected]>
AuthorDate: Fri Mar 27 19:24:47 2026 +0100
Pin CloudWatch LocalStack image to community-archive
The localstack:stable tag now requires authentication (CAMEL-23233).
Switch to community-archive tag, the latest freely available version,
aligning with the fix applied in camel core (cf2bb0abbd5).
---
.../aws2/services/AWSCloudWatchLocalContainerServiceWithTimeout.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tests/itests-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSCloudWatchLocalContainerServiceWithTimeout.java
b/tests/itests-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSCloudWatchLocalContainerServiceWithTimeout.java
index a40187eec6..f18ebe3dc2 100644
---
a/tests/itests-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSCloudWatchLocalContainerServiceWithTimeout.java
+++
b/tests/itests-aws-v2/src/test/java/org/apache/camel/test/infra/aws2/services/AWSCloudWatchLocalContainerServiceWithTimeout.java
@@ -20,6 +20,6 @@ import
org.apache.camel.test.infra.aws.common.services.AWSService;
public class AWSCloudWatchLocalContainerServiceWithTimeout extends
AWSLocalContainerInfraService implements AWSService {
public AWSCloudWatchLocalContainerServiceWithTimeout() {
- super(new AWSContainerWithTimeout(System.getProperty("aws.container",
"localstack/localstack:stable"), new Service[]{Service.CLOUD_WATCH}));
+ super(new AWSContainerWithTimeout(System.getProperty("aws.container",
"localstack/localstack:community-archive"), new
Service[]{Service.CLOUD_WATCH}));
}
}