Increase optional resource cache size

Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2024-06-24 13:39:40 -05:00 committed by GitHub
parent 50e07ec389
commit 82cdc7717f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;