From 35579a8803e8c94fa75a66ad695bca981a841ddc Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 21 Oct 2022 11:40:49 +0100 Subject: [PATCH] Remove dedicated fragments cache Reuse the default one to avoid an extra redis connection --- website/settings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/website/settings.py b/website/settings.py index 2d53f0c..6f0499e 100644 --- a/website/settings.py +++ b/website/settings.py @@ -131,7 +131,6 @@ CACHES = { "renditions": env.cache( var="RENDITION_CACHE_URL", default="locmemcache://renditions" ), - "template_fragments": env.cache(var="FRAGMENTS_CACHE_URL", default="dummycache://"), } # Allow the redirect importer to work in load-balanced / cloud environments.