Browse Source

fixed DigitalOcean provider issue with CAA records as reported here: https://github.com/octodns/octodns/pull/691#issuecomment-819228150

pull/692/head
Ricard Bejarano 5 years ago
parent
commit
7c44e5eedc
No known key found for this signature in database GPG Key ID: 98E8072CB960073F
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/digitalocean.py

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

@ -262,7 +262,7 @@ class DigitalOceanProvider(BaseProvider):
def _params_for_CAA(self, record):
for value in record.values:
yield {
'data': '{}.'.format(value.value),
'data': '{}'.format(value.value),
'flags': value.flags,
'name': record.name,
'tag': value.tag,


Loading…
Cancel
Save