Remove dedicated fragments cache

Reuse the default one to avoid an extra redis connection
This commit is contained in:
Jake Howard 2022-10-21 11:40:49 +01:00
parent 084f52358c
commit 35579a8803
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -131,7 +131,6 @@ CACHES = {
"renditions": env.cache( "renditions": env.cache(
var="RENDITION_CACHE_URL", default="locmemcache://renditions" 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. # Allow the redirect importer to work in load-balanced / cloud environments.