mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Flipped bool logic
This commit is contained in:
@@ -586,7 +586,7 @@ class CloudflareProvider(BaseProvider):
|
||||
|
||||
for desired_record in desired.records:
|
||||
existing_record = existing_records.get(desired_record, None)
|
||||
if existing_record: # Will be created
|
||||
if not existing_record: # Will be created
|
||||
continue
|
||||
elif desired_record in changed_records: # Already being updated
|
||||
continue
|
||||
|
Reference in New Issue
Block a user