mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-23 16:40:36 +00:00
add file_resubmit to DUMMY caches settings
This commit is contained in:
parent
d682e55812
commit
f3fc5f6179
1 changed files with 5 additions and 1 deletions
|
@ -243,7 +243,11 @@ if env.bool("USE_DUMMY_CACHE", False):
|
|||
CACHES = {
|
||||
"default": {
|
||||
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
|
||||
}
|
||||
},
|
||||
"file_resubmit": {
|
||||
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
|
||||
"LOCATION": "/tmp/file_resubmit_tests/",
|
||||
},
|
||||
}
|
||||
else:
|
||||
CACHES = {
|
||||
|
|
Loading…
Reference in a new issue