From 82cdc7717f033603d5ced84985bcc791d151ee92 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:39:40 -0500 Subject: [PATCH] Increase optional resource cache size Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- app/OptionalResourceService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/OptionalResourceService.ts b/app/OptionalResourceService.ts index 5dbbf44af4..f832a78519 100644 --- a/app/OptionalResourceService.ts +++ b/app/OptionalResourceService.ts @@ -25,7 +25,7 @@ const RESOURCES_DICT_PATH = join( 'optional-resources.json' ); -const MAX_CACHE_SIZE = 10 * 1024 * 1024; +const MAX_CACHE_SIZE = 50 * 1024 * 1024; export class OptionalResourceService { private maybeDeclaration: OptionalResourcesDictType | undefined;