1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
Monitoring-specific soluton to pagination. 'marker' was being extracted but not stored.
This commit is contained in:
Evan Light 2014-01-08 16:48:32 -05:00
parent 7f7665ad80
commit 5f94b552d5

View file

@ -13,7 +13,7 @@ module Fog
def all(options={}) def all(options={})
data = service.list_entities(options).body data = service.list_entities(options).body
marker = data['metadata']['next_marker'] self.marker = data['metadata']['next_marker']
load(data['values']) load(data['values'])
end end