Skip to content

Commit 3ea8fc7

Browse files
committed
Use local cache for e2e
1 parent fd2219d commit 3ea8fc7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

backend/settings/e2e.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ class E2E(Base):
1515
"http://frontend:3000", # NOSONAR
1616
"http://localhost:3000",
1717
)
18+
19+
CACHES = {
20+
"default": {
21+
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
22+
}
23+
}
24+
1825
CORS_ALLOWED_ORIGINS = ALLOWED_ORIGINS
1926
CSRF_TRUSTED_ORIGINS = ALLOWED_ORIGINS
2027

0 commit comments

Comments
 (0)