From 66a06806b4e5191c5cd862a131fd019233f48430 Mon Sep 17 00:00:00 2001 From: alebinson Date: Mon, 23 Feb 2026 14:09:54 +0200 Subject: [PATCH] fix: pycsw fetches 100000 records --- src/common/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config/index.ts b/src/common/config/index.ts index c9e96dff..b289d321 100644 --- a/src/common/config/index.ts +++ b/src/common/config/index.ts @@ -193,7 +193,7 @@ const APP_CONFIG = { TYPE: RUNNING_MODE.type, AUTOCOMPLETE: RUNNING_MODE.autocomplete, START_RECORD: 1, - END_RECORD: 1000, + END_RECORD: 100000, }, SYSTEM_JOBS_PRIORITY_OPTIONS: systemJobsPriorityOptions, NUMBER_OF_CHARACTERS_LIMIT: NUMBER_OF_CHARACTERS_LIMIT as number,