-
Notifications
You must be signed in to change notification settings - Fork 112
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
Interacting with a bucket on s3-eu-central-1 (frankfurt) fails #102
Comments
I think here is the relevant documentation. |
I created the gem in 2009 to allow connecting to Europe location in Ireland. There was no Frankfurt location back then, so the gem is definitely not prepared for that. Feel free to create a PR with support for v4 signatures and Frankfurt endpoint. |
I needed to make a quick script to solve some outstanding issue, so I fell back to use python's boto in the meantime. |
Still no support for v4? |
+1 |
I second this. Would be very useful. Is there a fork or PR somewhere that could be used when facing this bug? |
Operations such as
bucket.objects.first
fail.First, it is now required to operate directly against a given endpoint: HOST cannot be a single constant anymore:
Indeed, hacking it with
S3::HOST = "s3-eu-central-1.amazonaws.com"
helps proceeding to the next step.Then, this new endpoint makes v4 signatures mandatory:
Unfortunately this does not seem to be implemented.
The text was updated successfully, but these errors were encountered: