Merge pull request #2779 from dciancu/develop

Fix Cloudflare DNS
This commit is contained in:
Curtis 2019-05-07 07:45:48 -07:00 committed by GitHub
commit 44d4c98a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -66,8 +66,9 @@ def create_txt_record(host, value, account_number):
return zone_id, r['id']
def delete_txt_record(change_id, account_number, host, value):
def delete_txt_record(change_ids, account_number, host, value):
cf = cf_api_call()
for change_id in change_ids:
zone_id, record_id = change_id
current_app.logger.debug("Removing record with id {0}".format(record_id))
try: