1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

avoid prematurely termination of the processing pool

This commit is contained in:
downtownallday 2022-10-24 06:44:59 -04:00
parent cac796a5bb
commit bb969f16ae

View File

@ -1103,10 +1103,14 @@ if __name__ == "__main__":
if len(sys.argv) == 1: if len(sys.argv) == 1:
with multiprocessing.pool.Pool(processes=10) as pool: with multiprocessing.pool.Pool(processes=10) as pool:
run_checks(False, env, ConsoleOutput(), pool) run_checks(False, env, ConsoleOutput(), pool)
pool.close()
pool.join()
elif sys.argv[1] == "--show-changes": elif sys.argv[1] == "--show-changes":
with multiprocessing.pool.Pool(processes=10) as pool: with multiprocessing.pool.Pool(processes=10) as pool:
run_and_output_changes(env, pool) run_and_output_changes(env, pool)
pool.close()
pool.join()
elif sys.argv[1] == "--check-primary-hostname": elif sys.argv[1] == "--check-primary-hostname":
# See if the primary hostname appears resolvable and has a signed certificate. # See if the primary hostname appears resolvable and has a signed certificate.
@ -1128,3 +1132,5 @@ if __name__ == "__main__":
elif sys.argv[1] == "--only": elif sys.argv[1] == "--only":
with multiprocessing.pool.Pool(processes=10) as pool: with multiprocessing.pool.Pool(processes=10) as pool:
run_checks(False, env, ConsoleOutput(), pool, domains_to_check=sys.argv[2:]) run_checks(False, env, ConsoleOutput(), pool, domains_to_check=sys.argv[2:])
pool.close()
pool.join()