From 6c6d892dcd9e32ff80efd17878e79dfa9b12b20f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 18 2015 11:04:26 +0000 Subject: Make the application run threaded so that we can use redis --- diff --git a/runserver.py b/runserver.py index 33d6dec..270b1b2 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() +APP.run(threaded=True)