-
Hi There, Before opening an issue, I wanted to check if anyone else has experienced an issue when using Minio locally. After updating
require('shrine/storage/s3')
storage_options = {
bucket: ENV.fetch('BUCKET', nil),
access_key_id: Rails.configuration.aws_access_key_id,
secret_access_key: Rails.configuration.aws_secret_access_key,
region: 'us-east-1',
force_path_style: true,
endpoint: 'http://127.0.0.1:9000'
}
Shrine.storages = {
cache: Shrine::Storage::S3.new(prefix: 'cache', **storage_options),
store: Shrine::Storage::S3.new(**storage_options)
} |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Seems like a regression in aws-sdk-s3. Have you tried reporting it there, ideally with a minimal self-contained example without Shrine? |
Beta Was this translation helpful? Give feedback.
-
Definitely an issue with aws-sdk-s3. They confirmed it a regression. aws/aws-sdk-ruby#2776 |
Beta Was this translation helpful? Give feedback.
Definitely an issue with aws-sdk-s3. They confirmed it a regression. aws/aws-sdk-ruby#2776