feat(sort_exec): Sort checks execution (#1253)

Co-authored-by: sergargar <sergio@verica.io>
This commit is contained in:
Sergio Garcia
2022-07-07 09:12:15 +02:00
committed by GitHub
parent 7b9fae5605
commit db3de2d69e

View File

@@ -246,7 +246,7 @@ if __name__ == "__main__":
# Execute checks
if len(checks_to_execute):
for check_name in checks_to_execute:
for check_name in sorted(checks_to_execute):
# Recover service from check name
service = check_name.split("_")[0]
try: