[FIX] do not rolback cursor in test mode

bzr revid: chm@openerp.com-20140318160941-w4c8r15sl0vag0sa
This commit is contained in:
chm@openerp.com 2014-03-18 17:09:41 +01:00
parent cb6af2b2f0
commit 17956befd7
1 changed files with 1 additions and 4 deletions

View File

@ -222,10 +222,7 @@ class WebRequest(object):
def checked_call(___dbname, *a, **kw):
# The decorator can call us more than once if there is an database error. In this
# case, the request cursor is unusable. Rollback transaction to create a new one.
if self._cr:
print ""
print "rollback http.py checked_call"
print ""
if self._cr and not openerp.tools.config['test_enable']:
self._cr.rollback()
return self.endpoint(*a, **kw)