Jason Chaffee created CAMEL-5790:
------------------------------------
Summary: was-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
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