1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[hp|storage] marker option in each method needs to be a string

This commit is contained in:
Andreas Gerauer 2013-03-13 18:36:08 +00:00
parent 3c51776171
commit 0e225b97b7

View file

@ -44,7 +44,7 @@ module Fog
subset.each_file_this_page {|f| yield f}
until subset.empty? || subset.length == (subset.limit || 10000)
subset = subset.all(:marker => subset.last.key)
subset = subset.all('marker' => subset.last.key)
subset.each_file_this_page {|f| yield f}
end