Commit 7ee64041 by Greg Price

Merge pull request #7588 from edx/gprice/debug-toolbar-order

Move debug toolbar to end of devstack middleware
parents e39bc1a8 89362244
...@@ -45,11 +45,9 @@ ANALYTICS_DASHBOARD_URL = None ...@@ -45,11 +45,9 @@ ANALYTICS_DASHBOARD_URL = None
################################ DEBUG TOOLBAR ################################ ################################ DEBUG TOOLBAR ################################
INSTALLED_APPS += ('debug_toolbar', 'debug_toolbar_mongo') INSTALLED_APPS += ('debug_toolbar', 'debug_toolbar_mongo')
MIDDLEWARE_CLASSES = ( MIDDLEWARE_CLASSES += (
(
'django_comment_client.utils.QueryCountDebugMiddleware', 'django_comment_client.utils.QueryCountDebugMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware', 'debug_toolbar.middleware.DebugToolbarMiddleware',
) + MIDDLEWARE_CLASSES
) )
INTERNAL_IPS = ('127.0.0.1',) INTERNAL_IPS = ('127.0.0.1',)
......
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