Browse Source

Merge branch 'master' into route53-refactor

pull/46/head
Ross McFarland 9 years ago
committed by GitHub
parent
commit
acd245ed41
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      octodns/provider/cloudflare.py
  2. +1
    -1
      octodns/provider/route53.py

+ 1
- 1
octodns/provider/cloudflare.py View File

@ -36,7 +36,7 @@ class CloudflareProvider(BaseProvider):
'''
SUPPORTS_GEO = False
# TODO: support SRV
UNSUPPORTED_TYPES = ('NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
UNSUPPORTED_TYPES = ('ALIAS', 'NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
MIN_TTL = 120
TIMEOUT = 15


+ 1
- 1
octodns/provider/route53.py View File

@ -240,7 +240,7 @@ class Route53Provider(BaseProvider):
self._health_checks = None
def supports(self, record):
return record._type != 'SSHFP'
return record._type not in ('ALIAS', 'SSHFP')
@property
def r53_zones(self):


Loading…
Cancel
Save