Bug 1594497 - Increase shavar chunk size limit r=dimi

Differential Revision: https://phabricator.services.mozilla.com/D52913

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Se Yeon Kim 2019-12-27 21:11:45 +00:00
Родитель 6bb43533fc
Коммит bb56d6e2cb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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