mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Closes #2469
Monitoring-specific soluton to pagination. 'marker' was being extracted but not stored.
This commit is contained in:
parent
7f7665ad80
commit
5f94b552d5
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ module Fog
|
|||
|
||||
def all(options={})
|
||||
data = service.list_entities(options).body
|
||||
marker = data['metadata']['next_marker']
|
||||
self.marker = data['metadata']['next_marker']
|
||||
|
||||
load(data['values'])
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue