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

ZoneNameFilter error defaults to True

This commit is contained in:
Ross McFarland
2023-10-06 16:16:48 -07:00
parent da818d12e4
commit e6ad64f25f
2 changed files with 3 additions and 3 deletions

View File

@@ -228,7 +228,7 @@ class ZoneNameFilter(BaseProcessor):
class: octodns.processor.filter.ZoneNameFilter
# If true a ValidationError will be throw when such records are
# encouterd, if false the records will just be ignored/omitted.
# (default: false)
# (default: true)
zones:
exxampled.com.:
@@ -240,7 +240,7 @@ class ZoneNameFilter(BaseProcessor):
- azure
'''
def __init__(self, name, error=False):
def __init__(self, name, error=True):
super().__init__(name)
self.error = error