Terminate the status checks process pool before exiting

This commit is contained in:
David Duque 2020-07-21 19:21:46 +01:00
parent 20b4f26e42
commit a0da88834c
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 2 additions and 0 deletions

View File

@ -1038,10 +1038,12 @@ if __name__ == "__main__":
if len(sys.argv) == 1:
pool = multiprocessing.pool.Pool(processes=10)
run_checks(False, env, ConsoleOutput(), pool)
pool.terminate()
elif sys.argv[1] == "--show-changes":
pool = multiprocessing.pool.Pool(processes=10)
run_and_output_changes(env, pool)
pool.terminate()
elif sys.argv[1] == "--check-primary-hostname":
# See if the primary hostname appears resolvable and has a signed certificate.