Refs #27318 -- Made DummyCache.set_many() return a list for consistency with other backends.

This commit is contained in:
Adam Johnson 2017-10-30 15:25:33 +00:00 committed by Tim Graham
parent 03049fb8d9
commit abacd09f07
2 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ class DummyCache(BaseCache):
return False
def set_many(self, data, timeout=DEFAULT_TIMEOUT, version=None):
pass
return []
def delete_many(self, keys, version=None):
pass