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

Use correct filters on RDS model snapshots 'all' method

This commit is contained in:
James Bence 2013-07-10 10:53:18 -07:00
parent 708fbe0a76
commit ef02a5daad

View file

@ -32,7 +32,7 @@ module Fog
def all(filters = filters)
self.filters.merge!(filters)
page = service.describe_db_snapshots(filters).body['DescribeDBSnapshotsResult']
page = service.describe_db_snapshots(self.filters).body['DescribeDBSnapshotsResult']
self.filters[:marker] = page['Marker']
load(page['DBSnapshots'])
end