From cad48ea4e8371fb1a7f1303495d7c59a888c0fdb Mon Sep 17 00:00:00 2001 From: Arunothia Marappan Date: Fri, 25 Dec 2020 21:50:46 -0800 Subject: [PATCH] Updating lengthy comment --- octodns/provider/azuredns.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/octodns/provider/azuredns.py b/octodns/provider/azuredns.py index 3bbe1ea..a86d671 100644 --- a/octodns/provider/azuredns.py +++ b/octodns/provider/azuredns.py @@ -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__