File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -349,11 +349,8 @@ def skip_unreadable_post(record):
349349
350350}
351351
352+ # Override this in your settings_local with the IP addresses relevant for you:
352353INTERNAL_IPS = (
353- # AMS servers
354- '64.170.98.32' ,
355- '64.170.98.86' ,
356-
357354# local
358355 '127.0.0.1' ,
359356 '::1' ,
@@ -633,9 +630,20 @@ def skip_unreadable_post(record):
633630SELENIUM_TESTS = False
634631SELENIUM_TESTS_ONLY = False
635632
636- # Set debug apps in DEV_APPS settings_local
633+ # Set debug apps in settings_local.DEV_APPS
634+
637635DEV_APPS = ()
638636DEV_MIDDLEWARE_CLASSES = ()
637+
638+ # django-debug-toolbar and the debug listing of sql queries at the bottom of
639+ # each page when in dev mode can overlap in functionality, and can slow down
640+ # page loading. If you wish to use the sql_queries debug listing, put this in
641+ # your settings_local and make sure your client IP address is in INTERNAL_IPS:
642+ #
643+ # DEV_TEMPLATE_CONTEXT_PROCESSORS = (
644+ # 'ietf.context_processors.sql_debug',
645+ # )
646+ #
639647DEV_TEMPLATE_CONTEXT_PROCESSORS = ()
640648
641649# Domain which hosts draft and wg alias lists
You can’t perform that action at this time.
0 commit comments