From ae0f7588e41ff2630e86be58d1a0474def75c5eb Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Fri, 25 Oct 2019 10:23:13 +0200 Subject: [PATCH] Disabled cacheops by default --- api/config/settings/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/config/settings/common.py b/api/config/settings/common.py index f3b3fbf61..3dc2ea23b 100644 --- a/api/config/settings/common.py +++ b/api/config/settings/common.py @@ -529,7 +529,7 @@ CACHES["default"]["OPTIONS"] = { "IGNORE_EXCEPTIONS": True, # mimics memcache behavior. # http://niwinz.github.io/django-redis/latest/#_memcached_exceptions_behavior } -CACHEOPS_DURATION = env("CACHEOPS_DURATION", default=100) +CACHEOPS_DURATION = env("CACHEOPS_DURATION", default=0) CACHEOPS_ENABLED = bool(CACHEOPS_DURATION) if CACHEOPS_ENABLED: -- GitLab