This is an automated email from the ASF dual-hosted git repository. AlinsRan pushed a commit to branch feat/limit-count-sentinel in repository https://gitbox.apache.org/repos/asf/apisix.git
commit 1148c80a630492a6255f2c7ea9d352e7aae4716f Author: AlinsRan <[email protected]> AuthorDate: Tue May 26 09:36:43 2026 +0800 fix: add plugin-limit-count-lock to default shared dict config This dict is required by the delayed syncer module and was added to ngx_tpl.lua but missing from the default config, causing nginx to fail to start with an invalid configuration. --- apisix/cli/config.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/apisix/cli/config.lua b/apisix/cli/config.lua index 4a3fa3534..c5cebd4b4 100644 --- a/apisix/cli/config.lua +++ b/apisix/cli/config.lua @@ -169,6 +169,7 @@ local _M = { ["balancer-ewma-locks"] = "10m", ["balancer-ewma-last-touched-at"] = "10m", ["plugin-limit-req-redis-cluster-slot-lock"] = "1m", + ["plugin-limit-count-lock"] = "1m", ["plugin-limit-count-redis-cluster-slot-lock"] = "1m", ["plugin-limit-conn-redis-cluster-slot-lock"] = "1m", ["plugin-ai-rate-limiting"] = "10m",
