From 153c707f0d1519e5d6bf4f781c65f9add7c36409 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 01 2015 07:29:19 +0000 Subject: Make the flask app not run as threaded, this is no longer needed --- diff --git a/runserver.py b/runserver.py index 270b1b2..33d6dec 100755 --- a/runserver.py +++ b/runserver.py @@ -14,4 +14,4 @@ if '--profile' in sys.argv: APP.config['PROFILE'] = True APP.wsgi_app = ProfilerMiddleware(APP.wsgi_app, restrictions=[30]) -APP.run(threaded=True) +APP.run()