Bug 1594521 - enable remote settings blocklist on nightly, r=mconley

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Gijs Kruitbosch 2019-11-19 00:23:55 +00:00
Родитель f20a6e81d8
Коммит afb3b66abd
3 изменённых файлов: 3 добавлений и 6 удалений

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

@ -231,11 +231,6 @@ const startupPhases = {
condition: WIN, condition: WIN,
stat: 1, stat: 1,
}, },
{
path: "XCurProcD:blocklist.xml",
condition: WIN,
stat: 1,
},
{ {
// bug 1534745 // bug 1534745
path: "ProfD:cookies.sqlite-journal", path: "ProfD:cookies.sqlite-journal",

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

@ -2305,6 +2305,8 @@ pref("extensions.blocklist.enabled", true);
// OneCRL freshness checking depends on this value, so if you change it, // OneCRL freshness checking depends on this value, so if you change it,
// please also update security.onecrl.maximum_staleness_in_seconds. // please also update security.onecrl.maximum_staleness_in_seconds.
pref("extensions.blocklist.interval", 86400); pref("extensions.blocklist.interval", 86400);
// Whether to use the XML backend (true) or the remotesettings one (false).
pref("extensions.blocklist.useXML", false);
// Required blocklist freshness for OneCRL OCSP bypass // Required blocklist freshness for OneCRL OCSP bypass
// (default is 1.25x extensions.blocklist.interval, or 30 hours) // (default is 1.25x extensions.blocklist.interval, or 30 hours)
pref("security.onecrl.maximum_staleness_in_seconds", 108000); pref("security.onecrl.maximum_staleness_in_seconds", 108000);

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

@ -3239,7 +3239,7 @@ XPCOMUtils.defineLazyPreferenceGetter(
Blocklist, Blocklist,
"useXML", "useXML",
"extensions.blocklist.useXML", "extensions.blocklist.useXML",
true, false,
() => Blocklist.onUpdateImplementation(true) () => Blocklist.onUpdateImplementation(true)
); );