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

Existing and desired to _extra_changes, desired used by Route53 to get configed

Fixes an issue where we'd be looking for custom healthcheck config on the
existing record object (from the provider) which would never have a custom
setup. Instead looking at desired lets us find what's actually configured to be
the case
This commit is contained in:
Ross McFarland
2017-06-20 11:44:13 -07:00
parent 0c1a8fe964
commit d0b8b25cdd
5 changed files with 33 additions and 33 deletions

View File

@@ -29,7 +29,7 @@ class HelperProvider(BaseProvider):
return not self.include_change_callback or \
self.include_change_callback(change)
def _extra_changes(self, existing, changes):
def _extra_changes(self, existing, desired, changes):
return self.__extra_changes
def _apply(self, plan):