Commit 04e99641 by Ned Batchelder Committed by GitHub

Merge pull request #13373 from edx/george/euc-disable-ddt-profile-panel

Disable debug-toolbar ProfilingPanel
parents 84878b04 0735982b
...@@ -78,7 +78,12 @@ DEBUG_TOOLBAR_PANELS = ( ...@@ -78,7 +78,12 @@ DEBUG_TOOLBAR_PANELS = (
) )
DEBUG_TOOLBAR_CONFIG = { DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': 'cms.envs.devstack.should_show_debug_toolbar' # Profile panel is incompatible with wrapped views
# See https://github.com/jazzband/django-debug-toolbar/issues/792
'DISABLE_PANELS': (
'debug_toolbar.panels.profiling.ProfilingPanel',
),
'SHOW_TOOLBAR_CALLBACK': 'cms.envs.devstack.should_show_debug_toolbar',
} }
......
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