-
Notifications
You must be signed in to change notification settings - Fork 631
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
Comfy needs downgraded aws-sdk gem to work #666
Comments
+1 to fix |
1 similar comment
+1 to fix |
It's up to Paperclip: there is a pull request with the fix: thoughtbot/paperclip#1730 |
+1 to fix |
Thoughtbot has released version 4.3 of Paperclip 18 hours ago. Haven't tested it yet, will close issue if it works. |
Version 4.3 of paperclip does not include aws-sdk v2 support. I'm testing current master and it seems to work. |
Paperclip now supports aws-sdk 2x. https://github.com/thoughtbot/paperclip/blob/master/UPGRADING I was getting an error in Comfy (listing files in admin view) recently after upgrading some gems, I didn't research why but I'm assuming it was due to Paperclip being upgraded from 4.3.7 to 5.0.0. Upgrading to aws-sdk 2 latest and setting s3_region in the comfy paperclip initialiser fixed it. So I think this issue should be closed now. |
This is a result of an open issue with Paperclip, that should be fixed any day now but it gave me much trouble, so I thought I would at least document it here.
Symptoms:
File uploads to AWS S3 don't work. You observe a progress bar, but soon it turns red with the message:
NameError in Comfy::Admin::Cms::FilesController#create
The server spits out the following:
Fix:
In your Gemfile:
gem "aws-sdk" , '<2.0'
The text was updated successfully, but these errors were encountered: