-
Notifications
You must be signed in to change notification settings - Fork 180
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
NodeJS AWS SDK The specified bucket does not exist (also weird aws s3 ls
behavior)
#202
Comments
thx for reporting, looks like a Bug. |
Confirmed using the above steps, when running
Full log attached here: |
It appears that when you pass |
After more digging, it seems like I may be able to force the desired behavior with |
I also see the issue while using I think the issue may be related to how But the output XML sometimes has As long as one has some nested prefixes, things seem to work fine, e.g. listing of a bucket with this structure works fine: |
@yonilerner seems like you got your problem solved, then? |
I had the same issue only when upgrading from Java S3 SDK Version
I added the line |
Server is running via docker like:
(Version running is
2.1.18
, which is latest as of this writing)Im able to:
list-objects-v2
Heres where the bugs start:
aws --endpoint-url http://localhost:9090 s3 ls bucket-1
isnt showing anything other than:NodeJS
aws-sdk
'sAWS.S3.putObject
is always throwing "NoSuchBucket: The specified bucket does not exist" (with the server printing "Responding with status 404: The specified bucket does not exist.")AWS.S3.listObjectsV2
isnt listing anythingMy NodeJS S3 is configured like:
where the access and secret keys are just empty strings right now
My listObjectsV2 is:
My putObject is:
Let me know if I can provide any more info. Thanks!
The text was updated successfully, but these errors were encountered: