1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Ignore records with unsupported rrtypes and log warning.

This commit is contained in:
Nikolay Denev
2020-12-10 22:12:53 +00:00
parent bf99785aee
commit 9549a0dec9
4 changed files with 18 additions and 5 deletions

View File

@@ -287,7 +287,12 @@ class UltraProvider(BaseProvider):
name = zone.hostname_from_fqdn(record['ownerName'])
if record['rrtype'] == 'SOA (6)':
continue
_type = self.RECORDS_TO_TYPE[record['rrtype']]
try:
_type = self.RECORDS_TO_TYPE[record['rrtype']]
except KeyError:
self.log.warning('populate: ignoring record with '
'unsupported rrtype=%s', record)
continue
values[name][_type] = record
for name, types in values.items():