Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is an issue I'm having with the fact that after I upgraded to AWS-SDK (instead of aws-s3) with the newer version(s) of paperclip I can no longer call AWS::S3::Base.establish_connection! at all.

Where ever in my code I call

AWS::S3::Base.establish_connection!(:access_key_id => '****', :secret_access_key => '***')

I get this error...

NameError (uninitialized constant AWS::S3::Base):
    app/models/asset.rb:28:in `move_upload_from_temp_to_final_resting_place'
share|improve this question

1 Answer

up vote 12 down vote accepted

Yeah, aws-sdk doesn't have AWS::S3::Base. I think this is the closest equivalent:

s3 = AWS::S3.new(:access_key_id => '****', :secret_access_key => '***')
share|improve this answer
1  
This is correct. The aws-sdk maintains its own persistent connection pool, no need to explicitly establish a connection. – Trevor Rowe Apr 17 '12 at 3:53
I originally fixed it by downgrading all my AWS code to very early versions. But I was able to upgrade again, using this and get things working nicely with both my aJAX uploader and my EBAY API gem. Thanks. – Keith Connolly May 8 '12 at 19:21
Thank you. It saved a couple of hours of searching :) – Salil Jun 27 '12 at 1:18
Its late but Its right :) Thanks @rcrogers – Taimoor Changaiz Dec 6 '12 at 9:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.