Fix Cloudflare DNS

This commit is contained in:
Daniel Iancu 2019-05-07 02:39:49 +03:00
parent dfadcc52ef
commit a7af3cf8d2
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: