Unverified Commit 3959f6dd authored by Dan Jones's avatar Dan Jones
Browse files

fix: replace process pool with thread pool

parent 56dd8725
Pipeline #110180 passed with stages
in 58 seconds
......@@ -180,7 +180,7 @@ if __name__ == "__main__":
s.close()
try:
with concurrent.futures.ProcessPoolExecutor() as executor:
with concurrent.futures.ThreadPoolExecutor(max_workers=20) as executor:
main(executor)
except KeyboardInterrupt:
executor.shutdown(wait=False)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment