Merge pull request #32 from JockeTF/allow_dummy_cache_backend

Adds DummyCache to VALID_CACHE_BACKENDS.
This commit is contained in:
Bertrand Bordage 2015-12-18 13:01:38 +01:00
commit 84baaa9d60

View file

@ -24,6 +24,7 @@ VALID_DATABASE_ENGINES = {
VALID_CACHE_BACKENDS = {
'django.core.cache.backends.dummy.DummyCache',
'django.core.cache.backends.locmem.LocMemCache',
'django.core.cache.backends.filebased.FileBasedCache',
'django_redis.cache.RedisCache',