Increase concurrent lookups to 15 when generating HSTS preload list

This commit is contained in:
trav90 2018-06-05 22:25:18 -05:00 committed by Roy Tam
commit e8d7388622

View file

@ -25,7 +25,7 @@ const SOURCE = "https://chromium.googlesource.com/chromium/src/net/+/master/http
const OUTPUT = "nsSTSPreloadList.inc";
const ERROR_OUTPUT = "nsSTSPreloadList.errors";
const MINIMUM_REQUIRED_MAX_AGE = 60 * 60 * 24 * 7 * 18;
const MAX_CONCURRENT_REQUESTS = 5;
const MAX_CONCURRENT_REQUESTS = 15;
const MAX_RETRIES = 3;
const REQUEST_TIMEOUT = 30 * 1000;
const ERROR_NONE = "no error";