Browse Source

Deprecate SpfDnsLookupProcessor

pull/1060/head
Ross McFarland 2 years ago
parent
commit
e8a88ac520
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 5 additions and 0 deletions
  1. +2
    -0
      CHANGELOG.md
  2. +3
    -0
      octodns/processor/spf.py

+ 2
- 0
CHANGELOG.md View File

@ -17,6 +17,8 @@
configs.
* SpfRecord is formally deprecated with an warning and will become a
ValidationError in 2.x
* SpfDnsLookupProcessor is formally deprcated in favor of the version relocated
into https://github.com/octodns/octodns-spf and will be removed in 2.x
#### Stuff


+ 3
- 0
octodns/processor/spf.py View File

@ -55,6 +55,9 @@ class SpfDnsLookupProcessor(BaseProcessor):
def __init__(self, name):
self.log.debug(f"SpfDnsLookupProcessor: {name}")
self.log.warning(
'SpfDnsLookupProcessor is DEPRECATED in favor of the version relocated into octodns-spf and will be removed in 2.0'
)
super().__init__(name)
def _get_spf_from_txt_values(


Loading…
Cancel
Save