flexera-public / right_aws

RightScale Amazon Web Services Ruby Gems
MIT License
449 stars 175 forks source link

list_bucket still only pulls back 1,000 keys #50

Closed HuckyDucky closed 13 years ago

HuckyDucky commented 13 years ago

How can I make it list all of them?

konstantin-dzreev commented 13 years ago

Hi,

You can do something like this:

s3interface.incrementally_list_bucket(...) do |response|

puts response.inspect

end

konstantin-dzreev commented 13 years ago

...