From 2cf52180acf489bb67ea6d0dcf1a52f461d44ed0 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 13 Sep 2021 19:09:05 -0700 Subject: [PATCH] Add lenient config support to validate(_configs) --- octodns/manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/octodns/manager.py b/octodns/manager.py index 104e445..0ce425b 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -552,6 +552,7 @@ class Manager(object): source_zone = source_zone continue + lenient = config.get('lenient', False) try: sources = config['sources'] except KeyError: @@ -572,7 +573,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', [])