-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy from S3 to S3 fails #230
Comments
…th delimiter 🚑 Unlike the Java library, the `aws` CLI does not send a leading path delimiter, leading to an error further down the line. This was reported by @gerhardj-b. #230
Uses better variable names, improves code structure. #230
Thanks for reporting this, @gerhardj-b – Apparently, the |
Awesome, thanks. I read the API description also as not expecting a leading delimiter. Anyways, thanks for the extra check and solution for both cases. |
For internal reference: The original error is reproduced via with access credentials taken from http://localhost:9444/ui $ aws configure --profile s3ninja
$ export AWS_PROFILE=s3ninja
$ aws s3 --endpoint-url http://localhost:9444 cp s3://bucket1/file1 s3://bucket2/file2.pdf |
Released with version 8.3.2 |
When specifying a copy source which is a location in an S3 Bucket, the Operation cuts of the first character from the Bucket name.
Example with the official cli:
I suspect the substring here to be the culprit.
Amazon API Documentation here
The text was updated successfully, but these errors were encountered: