1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

only enable debug toolbar if nothreading is on

This commit is contained in:
Nick Sweeting 2021-02-18 08:04:26 -05:00
parent ca2bb673ea
commit c257ae240e

View file

@ -65,13 +65,14 @@ AUTHENTICATION_BACKENDS = [
'django.contrib.auth.backends.ModelBackend',
]
DEBUG_TOOLBAR = False
if DEBUG:
# only enable debug toolbar when in DEBUG mode with --nothreading (it doesnt work in multithreaded mode)
DEBUG_TOOLBAR = DEBUG and ('--nothreading' in sys.argv) and ('--reload' not in sys.argv)
if DEBUG_TOOLBAR:
try:
import debug_toolbar # noqa
DEBUG_TOOLBAR = True
except ImportError:
pass
DEBUG_TOOLBAR = False
if DEBUG_TOOLBAR:
INSTALLED_APPS = [*INSTALLED_APPS, 'debug_toolbar']