mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Reorder DNS tests to avoid random order in rendering
This commit is contained in:
parent
e633c8351b
commit
69bc12454e
1 changed files with 3 additions and 1 deletions
|
@ -42,8 +42,10 @@ class DNSRecordsDiagnoser(Diagnoser):
|
||||||
# Here if there are no AAAA record, we should add something to expect "no" AAAA record
|
# Here if there are no AAAA record, we should add something to expect "no" AAAA record
|
||||||
# to properly diagnose situations where people have a AAAA record but no IPv6
|
# to properly diagnose situations where people have a AAAA record but no IPv6
|
||||||
|
|
||||||
for category, records in expected_configuration.items():
|
categories = ["basic", "mail", "xmpp", "extra"]
|
||||||
|
for category in categories:
|
||||||
|
|
||||||
|
records = expected_configuration[category]
|
||||||
discrepancies = []
|
discrepancies = []
|
||||||
|
|
||||||
for r in records:
|
for r in records:
|
||||||
|
|
Loading…
Add table
Reference in a new issue