Commit 67dde2f5 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

Fixed #16162. Added timeout arg to `DummyCache.set_many`, for compatiblity...

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
parent b5578102
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
@@ -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"