All cache operations should use make_key().
@@ -22,6 +22,7 @@ class DummyCache(BaseCache):
self.validate_key(key)
def touch(self, key, timeout=DEFAULT_TIMEOUT, version=None):
+ key = self.make_key(key, version=version)
return False