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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user