diff --git a/cms/envs/devstack.py b/cms/envs/devstack.py index 1200a61b0617..ac21c2ee01a3 100644 --- a/cms/envs/devstack.py +++ b/cms/envs/devstack.py @@ -103,8 +103,12 @@ 'debug_toolbar.panels.request.RequestPanel', 'debug_toolbar.panels.sql.SQLPanel', 'debug_toolbar.panels.signals.SignalsPanel', - 'debug_toolbar.panels.profiling.ProfilingPanel', + 'debug_toolbar.panels.cache.CachePanel', 'debug_toolbar.panels.history.HistoryPanel', + + # ProfilingPanel has been intentionally removed for default devstack.py + # runtimes for performance reasons. + # 'debug_toolbar.panels.profiling.ProfilingPanel', ) DEBUG_TOOLBAR_CONFIG = { diff --git a/lms/envs/devstack.py b/lms/envs/devstack.py index 01100e924059..29c08c307ef2 100644 --- a/lms/envs/devstack.py +++ b/lms/envs/devstack.py @@ -96,11 +96,12 @@ 'debug_toolbar.panels.request.RequestPanel', 'debug_toolbar.panels.sql.SQLPanel', 'debug_toolbar.panels.signals.SignalsPanel', + 'debug_toolbar.panels.cache.CachePanel', 'debug_toolbar.panels.history.HistoryPanel', + # ProfilingPanel has been intentionally removed for default devstack.py - # runtimes for performance reasons. If you wish to re-enable it in your - # local development environment, please create a new settings file - # that imports and extends devstack.py. + # runtimes for performance reasons. + # 'debug_toolbar.panels.profiling.ProfilingPanel', ) DEBUG_TOOLBAR_CONFIG = {