From 3a63306b7e2da0b99a05c49cddcd7da0f0ed185f Mon Sep 17 00:00:00 2001 From: Michael Martin <3277009+flrgh@users.noreply.github.com> Date: Wed, 6 Jul 2022 15:21:06 -0700 Subject: [PATCH] fix(runloop) fix typo in configuration role check --- kong/runloop/handler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kong/runloop/handler.lua b/kong/runloop/handler.lua index e10a58e841e..aaaf264d8fe 100644 --- a/kong/runloop/handler.lua +++ b/kong/runloop/handler.lua @@ -1003,7 +1003,7 @@ end local function set_init_versions_in_cache() - if kong.configuration.role ~= "control_pane" then + if kong.configuration.role ~= "control_plane" then local ok, err = kong.core_cache:safe_set("router:version", "init") if not ok then return nil, "failed to set router version in cache: " .. tostring(err)