Sort services during diagnosis to avoid random order

This commit is contained in:
Alexandre Aubin 2019-11-08 20:44:27 +01:00
parent 65d6b02b56
commit 104bba3dd8

View file

@ -26,7 +26,7 @@ class ServicesDiagnoser(Diagnoser):
all_result = service_status()
for service, result in all_result.items():
for service, result in sorted(all_result.items()):
if service in services_ignored:
continue