Skip to content

Commit 7ca0483

Browse files
committed
Remove duplicated setting (CACHES in settings/docker.py)
1 parent 998b542 commit 7ca0483

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

Diff for: djangoproject/settings/docker.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from .common import * # noqa
2+
from .dev import CACHES # noqa
23

34
DATABASES = {
45
"default": {
@@ -24,17 +25,6 @@
2425
DEBUG = True
2526
THUMBNAIL_DEBUG = DEBUG
2627

27-
CACHES = {
28-
"default": {
29-
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
30-
"LOCATION": "trololololol",
31-
},
32-
"docs-pages": {
33-
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
34-
"LOCATION": "docs-pages",
35-
},
36-
}
37-
3828
CSRF_COOKIE_SECURE = False
3929

4030
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"

0 commit comments

Comments
 (0)