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:
parent
3c51776171
commit
0e225b97b7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue