1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Merge branch 'master' into allow-repeat-pools

This commit is contained in:
Pavan Chandrashekar
2020-04-14 00:02:48 -07:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -26,8 +26,8 @@ class AkamaiClient(object):
'''
Client for making calls to Akamai Fast DNS API using Python Requests
Fast DNS Zone Management API V2, found here:
developer.akamai.com/api/web_performance/fast_dns_zone_management/v2.html
Edge DNS Zone Management API V2, found here:
https://developer.akamai.com/api/cloud_security/edge_dns_zone_management/v2.html
Info on Python Requests library:
https://2.python-requests.org/en/master/
@@ -112,7 +112,7 @@ class AkamaiClient(object):
class AkamaiProvider(BaseProvider):
'''
Akamai Fast DNS Provider
Akamai Edge DNS Provider
edgedns.py:

View File

@@ -1395,6 +1395,8 @@ class Route53Provider(BaseProvider):
self._really_apply(batch, zone_id)
def _really_apply(self, batch, zone_id):
# Ensure this batch is ordered (deletes before creates etc.)
batch.sort(key=_mod_keyer)
uuid = uuid4().hex
batch = {
'Comment': 'Change: {}'.format(uuid),