diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-15 22:40:33 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-15 22:40:33 +0000 |
commit | d6703a2c704141afcc6f1c176c4f323c16a8918c (patch) | |
tree | 0a4b3e43ba41f455968715d6a7917421b314ce91 /app.py | |
parent | 49718f4228867648468b25d6c7d6b31c9053dd21 (diff) | |
download | eda.gay-d6703a2c704141afcc6f1c176c4f323c16a8918c.tar.gz eda.gay-d6703a2c704141afcc6f1c176c4f323c16a8918c.zip |
doubled the number of threads
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ if __name__ == "__main__": try: if sys.argv[1] == "--production": #serve(TransLogger(app), host='127.0.0.1', port = 6969) - serve(TransLogger(app), host='0.0.0.0', port = 6969) + serve(TransLogger(app), host='0.0.0.0', port = 6969, threads = 8) else: app.run(host = "0.0.0.0", port = 5001, debug = True) except IndexError: |