mirror of https://github.com/django/django.git
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:
parent
6e415a5f90
commit
392f81cba9
|
@ -96,8 +96,11 @@ class CacheClass(BaseCache):
|
||||||
|
|
||||||
self._lock.writer_enters()
|
self._lock.writer_enters()
|
||||||
try:
|
try:
|
||||||
del self._cache[key]
|
try:
|
||||||
del self._expire_info[key]
|
del self._cache[key]
|
||||||
|
del self._expire_info[key]
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
return False
|
return False
|
||||||
finally:
|
finally:
|
||||||
self._lock.writer_leaves()
|
self._lock.writer_leaves()
|
||||||
|
|
Loading…
Reference in New Issue