aws-s3 icon indicating copy to clipboard operation
aws-s3 copied to clipboard

AWS-S3 is a Ruby implementation of Amazon's S3 REST API

Results 87 aws-s3 issues
Sort by recently updated
recently updated
newest added
trafficstars

This bug is not happening consistently. When I put this gem under a capacity test of 100 requests/hour. This bug will happen around 5% of times. I have a file...

Can this library work in a multithreaded environment? Can a connection object be created rather than establishing an interpreter-global connection with AWS::S3::Base.establish_connection! ?

Starting on line 29 in /lib/aws/s3/extensions.rb: ``` ruby if RUBY_VERSION

Sometimes we get timeouts from S3 that are in the order of 10 minutes. We'd much prefer to have timeouts set to a number less than a minute so that...

Hi We have encountered an issue in our project which manifests itself during the starting of the rails server. Within the s3.rb file, the require_library_or_gem 'xml/libxml' succeeds but the XML::Parser...

These both return the same set of 1000 elements, despite all filenames starting with 'p' and using 'q' as the :marker option. ruby-1.9.3-p125 :012 > AWS::S3::Bucket.objects(@bucket_label, :prefix => @remote_path).first =>...

Hi. I accidentally backed up my whole bucket to glacier. This is great, except that the files are no longer in S3. I need to restore them all to S3...

From the [Documentation](http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html): > There are two opportunities for a copy request to return an error. One can occur when Amazon S3 receives the copy request and the other can...

I have a bucket on s3 cloud with 5 directories in it. When I tr to get all the objects from the bucket from rails console using AWS::S3::Bucket.object(bucket_name) it gives...

``` :001 > AWS::S3::Base.establish_connection! :access_key_id => 'key', :secret_access_key => 'secret', :server => 'my.cname' => #"key", :secret_access_key=>"secret", :server=>"my.cname", :port=>80}, @secret_access_key="secret", @access_key_id="key"> :002 > AWS::S3::S3Object.url_for 'some-file.jpg', 'my.cname' => "http://my.cname/my.cname/some-file.jpg?AWSAccessKeyId=key&Expires=1304600700&Signature=fCWKsMFoWhul3JNlU8eR7VPVHRs%3D" :003 > AWS::S3::S3Object.url_for...