Browse Source

Need to add the meta record with lenient in case it's temp empty values

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

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

@ -65,6 +65,9 @@ class MetaProcessor(BaseProcessor):
desired,
self.record_name,
{'ttl': self.ttl, 'type': 'TXT', 'values': self.values},
# we may be passing in empty values here to be filled out later in
# process_target_zone
lenient=True,
)
desired.add_record(meta)
return desired


Loading…
Cancel
Save