From 42b679d9a3660261368641515d51f794501fbd19 Mon Sep 17 00:00:00 2001 From: Stefan de Kooter Date: Fri, 25 Oct 2019 00:46:05 +0200 Subject: [PATCH] Fix #3635 - cache circuits.* Enable caching for items under the circuits app --- netbox/netbox/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index f49387482..dbaae31ee 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -364,6 +364,7 @@ CACHEOPS = { 'auth.user': {'ops': 'get', 'timeout': 60 * 15}, 'auth.*': {'ops': ('fetch', 'get')}, 'auth.permission': {'ops': 'all'}, + 'circuits.*': {'ops': 'all'}, 'dcim.*': {'ops': 'all'}, 'ipam.*': {'ops': 'all'}, 'extras.*': {'ops': 'all'},