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

Merge branch 'master' into py3-f-strings

This commit is contained in:
Ross McFarland
2021-09-15 18:34:53 -07:00
committed by GitHub
3 changed files with 4 additions and 3 deletions

View File

@@ -547,6 +547,7 @@ class Manager(object):
source_zone = source_zone
continue
lenient = config.get('lenient', False)
try:
sources = config['sources']
except KeyError:
@@ -566,7 +567,7 @@ class Manager(object):
for source in sources:
if isinstance(source, YamlProvider):
source.populate(zone)
source.populate(zone, lenient=lenient)
# check that processors are in order if any are specified
processors = config.get('processors', [])