mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
cb835978df
PDNS checks that when a `CNAME` rrset is created that no other rrset of the same name but a different rtype exists. When changing a record type to `CNAME`, PDA will send two operations in one api call to PDNS: A deletion of the old rrset, and the addition of the new rrset. For the check in PDNS to pass, the deletion needs to happen before the addition. Before PR #1201 that was the case, the first api call did deletions and the second handled additions and changes. Currently the api payload contains additions first and deletions last. PDNS applies these in the order they are passed in the payload to the api, so to restore the original/correct/working behaviour the order of operations in the api payload has to be reversed. fixes #1251 |
||
---|---|---|
.. | ||
__init__.py | ||
account_user.py | ||
account.py | ||
api_key_account.py | ||
api_key.py | ||
base.py | ||
domain_setting.py | ||
domain_template_record.py | ||
domain_template.py | ||
domain_user.py | ||
domain.py | ||
history.py | ||
record_entry.py | ||
record.py | ||
role.py | ||
server.py | ||
setting.py | ||
user.py |