#677 closed defect (fixed)
[patch] sql_queries list not getting reset between requests
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
In debug mode, a log of sql queries are stored as a list in django.db.db.queries - this list isn't getting cleared between requests. The enclosed patch adds the necessary line of code to handlers/base.py in the get_response method (seemed the most logical place for it).
Attachments (1)
Change History (2)
by , 19 years ago
Attachment: | sql_queries_reset_fix.diff added |
---|
comment:1 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [1009]) Fixed #677 -- db.queries is now reset per request. Thanks, seancazzell