Browse Source

Check Route 53 records against all supported types

pull/197/head
Michael Vermaes 8 years ago
parent
commit
80adb22a4b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/route53.py

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

@ -461,7 +461,7 @@ class Route53Provider(BaseProvider):
record_name = zone.hostname_from_fqdn(rrset['Name'])
record_name = _octal_replace(record_name)
record_type = rrset['Type']
if record_type == 'SOA':
if record_type not in self.SUPPORTS:
continue
data = getattr(self, '_data_for_{}'.format(record_type))(rrset)
records[record_name][record_type].append(data)


Loading…
Cancel
Save