Browse Source

Updating lengthy comment

pull/587/head
Arunothia Marappan 5 years ago
parent
commit
cad48ea4e8
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      octodns/provider/azuredns.py

+ 6
- 2
octodns/provider/azuredns.py View File

@ -488,8 +488,12 @@ class AzureProvider(BaseProvider):
azure_zone_name = desired.name[:len(desired.name) - 1]
self._check_zone(azure_zone_name, create=True)
# Force the operation order to be Delete() before all other operations.
# Helps avoid problems in updating a CNAME record into an A record and vice-versa.
'''
Force the operation order to be Delete() before all other operations.
Helps avoid problems in updating
- a CNAME record into an A record.
- an A record into a CNAME record.
'''
for change in changes:
class_name = change.__class__.__name__


Loading…
Cancel
Save