From dd96be4e9543e7f0e417ce912a5b36176bfb7e41 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 15 Mar 2026 17:29:10 -0700 Subject: [PATCH] chore: raise plugin registry cache cap --- src/plugins/loader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/loader.ts b/src/plugins/loader.ts index b9132c08f33..6f32ee0d151 100644 --- a/src/plugins/loader.ts +++ b/src/plugins/loader.ts @@ -54,7 +54,7 @@ export type PluginLoadOptions = { activate?: boolean; }; -const MAX_PLUGIN_REGISTRY_CACHE_ENTRIES = 32; +const MAX_PLUGIN_REGISTRY_CACHE_ENTRIES = 128; const registryCache = new Map(); const openAllowlistWarningCache = new Set();