From 8379f5bff50d90ee74ead87fe8a8f134f62e85eb Mon Sep 17 00:00:00 2001 From: chronolaw Date: Mon, 14 Oct 2024 10:23:29 +0800 Subject: [PATCH] Revert "restore pagesize in db conncetor" This reverts commit 95f5cc616a26e4f792982632546961d1f624620f. --- kong/db/strategies/connector.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kong/db/strategies/connector.lua b/kong/db/strategies/connector.lua index 3f03cddc11f7..719ef8078ca5 100644 --- a/kong/db/strategies/connector.lua +++ b/kong/db/strategies/connector.lua @@ -5,8 +5,8 @@ local fmt = string.format local Connector = { defaults = { pagination = { - page_size = 1000, - max_page_size = 50000, + page_size = 512, -- work with lmdb + max_page_size = 512, -- work with lmdb }, }, }