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

no-op Provider.process_desired_zone

This commit is contained in:
Ross McFarland
2021-08-17 19:15:34 -07:00
parent 6f6f9717b2
commit 536c0c68ec

View File

@@ -44,9 +44,14 @@ class BaseProvider(BaseSource):
'''
return []
def process_desired_zone(self, desired):
return desired
def plan(self, desired, processors=[]):
self.log.info('plan: desired=%s', desired.name)
desired = self.process_desired_zone(desired)
existing = Zone(desired.name, desired.sub_zones)
exists = self.populate(existing, target=True, lenient=True)
if exists is None: