From aea19e7677104dacca847465436b58110b7838f0 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 15 Jul 2021 14:27:00 +0200 Subject: [PATCH] CACHE_TIMEOUT = None --- app/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/settings.py b/app/settings.py index 6db829b5..ede352b4 100644 --- a/app/settings.py +++ b/app/settings.py @@ -280,7 +280,7 @@ CACHES = { } } -CACHE_TIMEOUT = 120 +CACHE_TIMEOUT = None # Name of cache backend to cache user agents. If it not specified default # cache alias will be used. Set to `None` to disable caching. -- 2.39.5