-
Notifications
You must be signed in to change notification settings - Fork 275
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
Word credentials repeated on storage/s3.rb #149
Comments
This was done intentionally, because I saw refile/refile-s3#31 and refile/refile-s3#18 being opened. However, I now think this not needed, as we can access the credentials directly from |
Thanks!, this was generating an error, using the aws-sdk 2.8.7 and using cache and store with S3, will update shrine from github. |
@josueadelima Can you tell me which error it was raising? I cannot reproduce it with aws-sdk 2.8.7: require "aws-sdk"
puts Aws::VERSION
resource = Aws::S3::Resource.new(
access_key_id: "abc",
secret_access_key: "xyz",
region: "eu-west-1"
)
puts resource.client.config.credentials.credentials.access_key_id
|
Sorry, I had an error in my gem file with the aws-sdk, and I was using an old version, I cannot reproduce the error anymore, but it was:
Thats how I noticed the word was repeated |
On line 304 word credentials is repeated
s3.client.config.credentials.credentials.access_key_id
The text was updated successfully, but these errors were encountered: