This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit e9828d25fe0b3dbb125ea1c042d7030c212a6543 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Apr 14 10:52:10 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 06a8f0c7c43..8467947ec36 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 @@ -523,6 +523,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 */
