mirror of
https://github.com/django/django.git
synced 2024-11-20 00:14:08 +00:00
8e838d9c86
This also fixes a possible data eviction race condition between setting and getting a key. Another thread could remove the key before get_and_set() accesses it again. In this case, now the default value will be returned instead of None.
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
==========================
|
|
Django 1.9.1 release notes
|
|
==========================
|
|
|
|
*Under development*
|
|
|
|
Django 1.9.1 fixes several bugs in 1.9.
|
|
|
|
Bugfixes
|
|
========
|
|
|
|
* Fixed ``BaseCache.get_or_set()`` with the ``DummyCache`` backend
|
|
(:ticket:`25840`).
|