From 34acff585a371747e53580df559b74236e6bb159 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 17 Jun 2016 15:02:54 -0700 Subject: [PATCH] Run flask server multithreaded --- voting-app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voting-app/app.py b/voting-app/app.py index 1f1bc4e..b80f972 100644 --- a/voting-app/app.py +++ b/voting-app/app.py @@ -42,4 +42,4 @@ def hello(): if __name__ == "__main__": - app.run(host='0.0.0.0', port=80, debug=True) + app.run(host='0.0.0.0', port=80, debug=True, threaded=True)