Skip to content

Commit c00d9e6

Browse files
committed
Remove duplicated setting (CACHES in settings/docker.py)
1 parent d07c086 commit c00d9e6

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

djangoproject/settings/docker.py

Lines changed: 1 addition & 11 deletions
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)