Browse Source

Merge pull request #1135 from Nullreff/main

Fall back to repr() in value filters and keep list names
pull/1139/head
Ross McFarland 2 years ago
committed by GitHub
parent
commit
429a6be9ff
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      octodns/processor/filter.py

+ 6
- 0
octodns/processor/filter.py View File

@ -280,6 +280,9 @@ class ValueAllowlistFilter(_ValueBaseFilter, AllowsMixin):
- route53
'''
def __init__(self, name, allowlist):
super().__init__(name, allowlist)
class ValueRejectlistFilter(_ValueBaseFilter, RejectsMixin):
'''Reject managing records with names that match the provider patterns
@ -313,6 +316,9 @@ class ValueRejectlistFilter(_ValueBaseFilter, RejectsMixin):
- route53
'''
def __init__(self, name, rejectlist):
super().__init__(name, rejectlist)
class _NetworkValueBaseFilter(BaseProcessor):
def __init__(self, name, _list):


Loading…
Cancel
Save