This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 67105771fd6e2f8a13fc5a6df8e67853f1d52d6e Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Apr 14 11:57:34 2023 +0200 CAMEL-19266 - Camel-AWS2-S3: Add a forcePathStyle option to configuration Signed-off-by: Andrea Cosentino <[email protected]> --- .../java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java | 1 + 1 file changed, 1 insertion(+) diff --git a/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java b/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java index 62d6d7417be..9f9729d839b 100644 --- a/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java +++ b/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java @@ -519,6 +519,7 @@ public class AWS2S3Configuration implements Cloneable { public boolean isForcePathStyle() { return forcePathStyle; } + /** * Set whether the S3 client should use path-style URL instead of virtual-hosted-style */
