From d904779dc4f1e2486421d0950a2a8693efffc38e Mon Sep 17 00:00:00 2001 From: Aapo Talvensaari Date: Tue, 19 Dec 2023 16:57:34 +0200 Subject: [PATCH] chore(cache): store core entities in core cache ### Summary Some core entities were not listed to be cached in core cache. Signed-off-by: Aapo Talvensaari --- kong/constants.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kong/constants.lua b/kong/constants.lua index fc3b8a18a3b..3917eba0eef 100644 --- a/kong/constants.lua +++ b/kong/constants.lua @@ -145,6 +145,7 @@ local constants = { "filter_chains", }, ENTITY_CACHE_STORE = setmetatable({ + workspaces = "core_cache", consumers = "cache", certificates = "core_cache", services = "core_cache", @@ -155,9 +156,12 @@ local constants = { plugins = "core_cache", tags = "cache", ca_certificates = "core_cache", + clustering_data_planes = "core_cache", + parameters = "core_cache", vaults = "core_cache", key_sets = "core_cache", keys = "core_cache", + filter_chains = "core_cache", }, { __index = function() return "cache"