Skip to content

Commit

Permalink
Remove cache
Browse files Browse the repository at this point in the history
  • Loading branch information
symroe committed Nov 16, 2023
1 parent fb13cfe commit e33d3c8
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions ec_api/settings/base_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
AWS_SES_REGION_NAME = "eu-west-2"
AWS_SES_REGION_ENDPOINT = "email.eu-west-2.amazonaws.com"


AWS_S3_SECURE_URLS = False
AWS_S3_USE_SSL = True
AWS_S3_REGION_NAME = "eu-west-2"
Expand All @@ -50,14 +49,4 @@

STATIC_ROOT = os.path.join(BASE_DIR, "static_files") # noqa: F405

CACHE_URL = os.environ.get("CACHE_URL", None)
if CACHE_URL:
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
"LOCATION": f"{CACHE_URL}:11211",
}
}


setup_sentry() # noqa: F405

0 comments on commit e33d3c8

Please sign in to comment.