Browse Source

Merge pull request #83 from anthonyvia/fix-route53-paging

Supply 'Marker' to Route53 client when paging in order to correctly r…
pull/86/head
Ross McFarland 9 years ago
committed by GitHub
parent
commit
16cfdc5bf0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/route53.py

+ 1
- 1
octodns/provider/route53.py View File

@ -250,7 +250,7 @@ class Route53Provider(BaseProvider):
more = True
start = {}
while more:
resp = self._conn.list_hosted_zones()
resp = self._conn.list_hosted_zones(**start)
for z in resp['HostedZones']:
zones[z['Name']] = z['Id']
more = resp['IsTruncated']


Loading…
Cancel
Save