mirror of
https://github.com/django/django.git
synced 2024-12-24 10:05:46 +00:00
Fixed #16162. Added timeout arg to DummyCache.set_many
, for compatiblity with other caches. Thanks to aaugustin for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16778 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b557810207
commit
67dde2f52f
2
django/core/cache/backends/dummy.py
vendored
2
django/core/cache/backends/dummy.py
vendored
@ -32,7 +32,7 @@ class DummyCache(BaseCache):
|
||||
self.validate_key(key)
|
||||
return False
|
||||
|
||||
def set_many(self, data, version=None):
|
||||
def set_many(self, data, timeout=0, version=None):
|
||||
pass
|
||||
|
||||
def delete_many(self, keys, version=None):
|
||||
|
1
tests/regressiontests/cache/tests.py
vendored
1
tests/regressiontests/cache/tests.py
vendored
@ -147,6 +147,7 @@ class DummyCacheTests(unittest.TestCase):
|
||||
def test_set_many(self):
|
||||
"set_many does nothing for the dummy cache backend"
|
||||
self.cache.set_many({'a': 1, 'b': 2})
|
||||
self.cache.set_many({'a': 1, 'b': 2}, timeout=2, version='1')
|
||||
|
||||
def test_delete_many(self):
|
||||
"delete_many does nothing for the dummy cache backend"
|
||||
|
Loading…
Reference in New Issue
Block a user