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

Implement Zone.add_record lenient across our providers

This commit is contained in:
Ross McFarland
2018-05-30 12:41:59 -07:00
parent 1103b4c383
commit cee7677ae4
14 changed files with 18 additions and 18 deletions

View File

@@ -215,7 +215,7 @@ class RackspaceProvider(BaseProvider):
record = Record.new(zone, record_name,
data_for(record_set),
source=self)
zone.add_record(record)
zone.add_record(record, lenient=lenient)
self.log.info('populate: found %s records, exists=True',
len(zone.records) - before)