Kaydet (Commit) 4d2f489b authored tarafından Russell Keith-Magee's avatar Russell Keith-Magee

Fixed #12189 -- Corrected rollback behavior in database cache backend. Thanks to…

Fixed #12189 -- Corrected rollback behavior in database cache backend. Thanks to Lakin Wecker for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12409 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 75ab212d
...@@ -65,7 +65,7 @@ class CacheClass(BaseCache): ...@@ -65,7 +65,7 @@ class CacheClass(BaseCache):
cursor.execute("INSERT INTO %s (cache_key, value, expires) VALUES (%%s, %%s, %%s)" % self._table, [key, encoded, str(exp)]) cursor.execute("INSERT INTO %s (cache_key, value, expires) VALUES (%%s, %%s, %%s)" % self._table, [key, encoded, str(exp)])
except DatabaseError: except DatabaseError:
# To be threadsafe, updates/inserts are allowed to fail silently # To be threadsafe, updates/inserts are allowed to fail silently
transaction.rollback() transaction.rollback_unless_managed()
return False return False
else: else:
transaction.commit_unless_managed() transaction.commit_unless_managed()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment