[
https://issues.apache.org/jira/browse/CAMEL-5790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13497510#comment-13497510
]
Jason Chaffee commented on CAMEL-5790:
--------------------------------------
Hey Willem, I tried to to use the "/" delimiter but it still failed. Here is
my bucketName, with some characters changed for company reasons.
{code}
s3-bar-foo-prod-synd/6a31c532-cd0f-12e1-a11d-12412f02b582/premium
{code}
> aws-s3 should support retrieving a single object request
> --------------------------------------------------------
>
> Key: CAMEL-5790
> URL: https://issues.apache.org/jira/browse/CAMEL-5790
> Project: Camel
> Issue Type: Improvement
> Components: camel-aws
> Affects Versions: 2.10.2
> Reporter: Jason Chaffee
> Assignee: Willem Jiang
>
> Currently, it was-s3 tries to list objects and if that fails it attempts to
> create a new bucket. This logic shouldn't be done by default. Also, you may
> only want to download a single file and if the listing fails, you can't do so.
> For example, this code is currently causing a 404 in the aws-s3 endpoint.
> This keeps the component from ever downloading anything, even the bucket
> already exists. I am not sure why this fails.
> {code}
> getS3Client().listObjects(new ListObjectsRequest(bucketName, null, null,
> null, 0));
> {code}
> However, if I change the code to download a single file using the same bucket
> name, it works.
> {code}
> getS3Client().getObject(new GetObjectRequest(bucketName, filename));
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira