Fixed #9626 -- Fixed a deletion race in the locmem cache.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9998 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2009-03-08 09:59:43 +00:00
parent 6e415a5f90
commit 392f81cba9
1 changed files with 5 additions and 2 deletions

View File

@ -96,8 +96,11 @@ class CacheClass(BaseCache):
self._lock.writer_enters()
try:
del self._cache[key]
del self._expire_info[key]
try:
del self._cache[key]
del self._expire_info[key]
except KeyError:
pass
return False
finally:
self._lock.writer_leaves()