chore: raise plugin registry cache cap

This commit is contained in:
Peter Steinberger 2026-03-15 17:29:10 -07:00
parent c156f7c7e3
commit dd96be4e95
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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<string, PluginRegistry>();
const openAllowlistWarningCache = new Set<string>();