diff options
| author | Michael Manfre <mmanfre@gmail.com> | 2013-09-23 12:40:19 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-01 13:42:59 -0400 |
| commit | bf757a2f4dad519fac1b4a458376de3a040f5ca8 (patch) | |
| tree | 2de3116317a6daf0478c8e3e20545d1836c4a5dc /docs/internals | |
| parent | 8c27247397cf16b17d0153ae059593c5a468de01 (diff) | |
Fixed #21147 -- Avoided time.time precision issue with cache backends.
The precision of time.time() is OS specific and it is possible for the
resolution to be low enough to allow reading a cache key previously set
with a timeout of 0.
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/deprecation.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 5c1b1cab6f..498f303daf 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -457,6 +457,10 @@ these changes. * ``ModelAdmin.get_formsets`` will be removed. +* Remove the backward compatible shims introduced to rename the + ``BaseMemcachedCache._get_memcache_timeout()`` method to + ``get_backend_timeout()``. + 2.0 --- |
