In fact we can't have a hard dependency on dnsrecords here, otherwise no check are performed until the dnsrecords have no important issue ...

This commit is contained in:
Alexandre Aubin 2020-04-18 03:24:31 +02:00
parent e880e775c1
commit db347115fc
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ class PortsDiagnoser(Diagnoser):
id_ = os.path.splitext(os.path.basename(__file__))[0].split("-")[1] id_ = os.path.splitext(os.path.basename(__file__))[0].split("-")[1]
cache_duration = 600 cache_duration = 600
dependencies = ["ip", "dnsrecords"] dependencies = ["ip"]
def run(self): def run(self):

View file

@ -17,7 +17,7 @@ class WebDiagnoser(Diagnoser):
id_ = os.path.splitext(os.path.basename(__file__))[0].split("-")[1] id_ = os.path.splitext(os.path.basename(__file__))[0].split("-")[1]
cache_duration = 600 cache_duration = 600
dependencies = ["ip", "dnsrecords"] dependencies = ["ip"]
def run(self): def run(self):