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:
parent
708fbe0a76
commit
ef02a5daad
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue