Skip to content

Commit

Permalink
Lower the compression level
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Jan 16, 2024
1 parent 8a9b6d4 commit f364782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/cache/package/sqlite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function compress(input: unknown): Promise<Buffer> {
return brotliCompress(jsonStr, {
params: {
[constants.BROTLI_PARAM_MODE]: constants.BROTLI_MODE_TEXT,
[constants.BROTLI_PARAM_QUALITY]: 6,
[constants.BROTLI_PARAM_QUALITY]: 3,
},
});
}
Expand Down

0 comments on commit f364782

Please sign in to comment.