mirror of https://github.com/zulip/zulip.git
[Django 1.6] update monkeypatching for CursorDebugWrapper.
(imported from commit cb4b44a2bb6ba6efbd1fb5710da2df7c1dec7f81)
This commit is contained in:
parent
c03050f2b9
commit
2e833613c3
|
@ -177,7 +177,6 @@ class JsonErrorHandler(object):
|
|||
# Monkeypatch in time tracking to the Django non-debug cursor
|
||||
# Code comes from CursorDebugWrapper
|
||||
def wrapper_execute(self, action, sql, params=()):
|
||||
self.set_dirty()
|
||||
start = time.time()
|
||||
try:
|
||||
return action(sql, params)
|
||||
|
|
|
@ -93,7 +93,6 @@ def queries_captured():
|
|||
queries = []
|
||||
|
||||
def wrapper_execute(self, action, sql, params=()):
|
||||
self.set_dirty()
|
||||
start = time.time()
|
||||
try:
|
||||
return action(sql, params)
|
||||
|
|
Loading…
Reference in New Issue