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:
@@ -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):
|
||||
|
Reference in New Issue
Block a user