Bug 1462906 - Make HTTP throttling v2 algorithm Nightly-only due to video streaming regressions. r=mayhemer

--HG--
extra : rebase_source : c5abffe2795c2c608d72deeb1e246f98297430fa
This commit is contained in:
Ryan VanderMeulen 2018-07-10 14:53:36 -04:00
parent a99ba38721
commit 16150016a5

View File

@ -2144,7 +2144,13 @@ pref("network.http.throttle.enable", false);
#else
pref("network.http.throttle.enable", true);
#endif
// Make HTTP throttling v2 algorithm Nightly-only due to bug 1462906
#ifdef NIGHTLY_BUILD
pref("network.http.throttle.version", 2);
#else
pref("network.http.throttle.version", 1);
#endif
// V1 prefs
pref("network.http.throttle.suspend-for", 900);