You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/02/23 13:43:40 UTC

[camel-spring-boot] branch camel-spring-boot-3.x updated: Make S3CreateDownloadLinkOperationTest FIPS compliant (#762)

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

davsclaus pushed a commit to branch camel-spring-boot-3.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/camel-spring-boot-3.x by this push:
     new d9861b01c4e Make S3CreateDownloadLinkOperationTest FIPS compliant (#762)
d9861b01c4e is described below

commit d9861b01c4e5ae12a55a602ea85decc1beeff4fa
Author: Marco Carletti <mc...@redhat.com>
AuthorDate: Thu Feb 23 14:43:34 2023 +0100

    Make S3CreateDownloadLinkOperationTest FIPS compliant (#762)
---
 .../camel/component/aws2/s3/S3CreateDownloadLinkOperationTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-aws2-s3-starter/src/test/java/org/apache/camel/component/aws2/s3/S3CreateDownloadLinkOperationTest.java b/components-starter/camel-aws2-s3-starter/src/test/java/org/apache/camel/component/aws2/s3/S3CreateDownloadLinkOperationTest.java
index 84c8be7652b..21c25d04605 100644
--- a/components-starter/camel-aws2-s3-starter/src/test/java/org/apache/camel/component/aws2/s3/S3CreateDownloadLinkOperationTest.java
+++ b/components-starter/camel-aws2-s3-starter/src/test/java/org/apache/camel/component/aws2/s3/S3CreateDownloadLinkOperationTest.java
@@ -100,7 +100,7 @@ public class S3CreateDownloadLinkOperationTest extends BaseS3 {
 
                     from("direct:createDownloadLinkWithoutCredentials").to(awsEndpoint).to("mock:result");
 
-                    from("direct:createDownloadLink").to(awsEndpoint + "&accessKey=xxx&secretKey=yyy&region=eu-west-1")
+                    from("direct:createDownloadLink").to(awsEndpoint + "&accessKey=xxx&secretKey=randomatleast16bytesyy&region=eu-west-1")
                             .to("mock:result");
                 }
             };