Warn that NULL SRV records are unsupported in DNSimple provider

DNSimple does not handle NULL SRV records correctly (either via
their web interface or API).  Flag to end user if attempted.

Issue noted with DNSimple support 2020-12-09
This commit is contained in:
Mark Tearle
2021-02-15 22:33:04 +08:00
parent e0d79f826f
commit 2cd5511dc6
2 changed files with 40 additions and 3 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ class TestDnsimpleProvider(TestCase):
plan = provider.plan(self.expected)
# No root NS, no ignored, no excluded
n = len(self.expected.records) - 4
n = len(self.expected.records) - 6
self.assertEquals(n, len(plan.changes))
self.assertEquals(n, provider.apply(plan))
self.assertFalse(plan.exists)