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

Merge pull request #2551 from elight/monitoring_pagination

[Rackspace] Monitoring pagination fix
This commit is contained in:
Kyle Rames 2014-01-09 06:27:25 -08:00
commit 76756dc1cd

View file

@ -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