From 44586f9795765b5f49f16469c501aa40ca989a08 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sat, 14 Dec 2024 15:15:08 +0100 Subject: [PATCH] try max 767 for pageSourcePool --- core/src/main/java/lucee/runtime/PageSourcePool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/lucee/runtime/PageSourcePool.java b/core/src/main/java/lucee/runtime/PageSourcePool.java index 7b4cea8059..679943b0c9 100644 --- a/core/src/main/java/lucee/runtime/PageSourcePool.java +++ b/core/src/main/java/lucee/runtime/PageSourcePool.java @@ -51,7 +51,7 @@ public final class PageSourcePool implements Dumpable { // TODO must not be thread safe, is used in sync block only private final Map> pageSources = new ConcurrentHashMap>(); - private int maxSize_min = 1000; + private int maxSize_min = 767; private PageSourcePoolWatcher watcher; private Object token = new SerializableObject(); private MappingImpl mapping;