mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
#1033: Disable the debug toolbar templates panel by default due to a performance issue under Django 1.11
This commit is contained in:
parent
409c9c4e23
commit
1dcb0b52e2
@ -218,6 +218,14 @@ REST_FRAMEWORK = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Django debug toolbar
|
# Django debug toolbar
|
||||||
|
# Disable the templates panel by default due to a performance issue in Django 1.11; see
|
||||||
|
# https://github.com/jazzband/django-debug-toolbar/issues/910
|
||||||
|
DEBUG_TOOLBAR_CONFIG = {
|
||||||
|
'DISABLE_PANELS': [
|
||||||
|
'debug_toolbar.panels.redirects.RedirectsPanel',
|
||||||
|
'debug_toolbar.panels.templates.TemplatesPanel',
|
||||||
|
],
|
||||||
|
}
|
||||||
INTERNAL_IPS = (
|
INTERNAL_IPS = (
|
||||||
'127.0.0.1',
|
'127.0.0.1',
|
||||||
'::1',
|
'::1',
|
||||||
|
Loading…
Reference in New Issue
Block a user