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

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

This commit is contained in:
Ross McFarland
2023-09-10 12:48:12 -07:00
parent 3343c4ba51
commit e61363b910

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