Bug 1594497 - Increase shavar chunk size limit r=dimi

Differential Revision: https://phabricator.services.mozilla.com/D52913
This commit is contained in:
Se Yeon Kim
2019-12-17 00:19:21 +00:00
parent 629b2fbc16
commit 0caea458af

View File

@@ -30,7 +30,7 @@ namespace mozilla {
namespace safebrowsing {
// Updates will fail if fed chunks larger than this
const uint32_t MAX_CHUNK_SIZE = (1024 * 1024);
const uint32_t MAX_CHUNK_SIZE = (4 * 1024 * 1024);
// Updates will fail if the total number of tocuhed chunks is larger than this
const uint32_t MAX_CHUNK_RANGE = 1000000;