bug 1361201 - decrease OCSP soft timeout to 1 second on prerelease builds r=jcj

MozReview-Commit-ID: ENYyG8ZeXYe

--HG--
extra : rebase_source : 5c30b914a39a2dce89190c7d5db703952408aae3
This commit is contained in:
David Keeler 2017-05-01 17:05:31 -07:00
Родитель f7e888274e
Коммит f900f10f03
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -50,7 +50,11 @@ pref("security.enterprise_roots.enabled", false);
pref("security.OCSP.enabled", 1);
pref("security.OCSP.require", false);
pref("security.OCSP.GET.enabled", false);
#ifdef RELEASE_OR_BETA
pref("security.OCSP.timeoutMilliseconds.soft", 2000);
#else
pref("security.OCSP.timeoutMilliseconds.soft", 1000);
#endif
pref("security.OCSP.timeoutMilliseconds.hard", 10000);
pref("security.pki.cert_short_lifetime_in_days", 10);