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

Add debug for _include_changes

This commit is contained in:
Anton Shnayder
2019-08-01 13:33:53 +03:00
parent 76a9d358e8
commit 74a87d4933

View File

@@ -81,6 +81,8 @@ class SelectelProvider(BaseProvider):
new = change.new.data
new['ttl'] = max(self.MIN_TTL, new['ttl'])
if new == existing:
self.log.debug('_include_changes: new=%s, found existing=%s',
new, existing)
return False
return True