#23364: sql_queries from debug template context processor always empty
-------------------------------+--------------------
     Reporter:  Markush2010    |      Owner:  nobody
         Type:  Bug            |     Status:  new
    Component:  Uncategorized  |    Version:  master
     Severity:  Normal         |   Keywords:
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  0              |      UI/UX:  0
-------------------------------+--------------------
 The `sql_queries` template context variable should propagated with all the
 queries from `connection.queries`. However, this list seems to be always
 empty:

 {{{#!python
 # django.core.context_processors
 def debug(request):
     "Returns context variables helpful for debugging."
     context_extras = {}
     import ipdb; ipdb.set_trace()
     if settings.DEBUG and request.META.get('REMOTE_ADDR') in
 settings.INTERNAL_IPS:
         context_extras['debug'] = True
         from django.db import connection
         context_extras['sql_queries'] = connection.queries
     return context_extras
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/23364>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/054.9c76e8e016814d061dd673bdb5b96ce5%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to