[ 
https://issues.apache.org/jira/browse/CAMEL-5790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Willem Jiang resolved CAMEL-5790.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 2.13.0

Applied the patch into trunk.

> 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
>             Fix For: 2.13.0
>
>         Attachments: getS3ObjectByFileName.patch
>
>
> Currently, it aws-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 was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to