forked from mirrors/gecko-dev
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:
parent
a99ba38721
commit
16150016a5
1 changed files with 6 additions and 0 deletions
|
|
@ -2144,7 +2144,13 @@ pref("network.http.throttle.enable", false);
|
||||||
#else
|
#else
|
||||||
pref("network.http.throttle.enable", true);
|
pref("network.http.throttle.enable", true);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Make HTTP throttling v2 algorithm Nightly-only due to bug 1462906
|
||||||
|
#ifdef NIGHTLY_BUILD
|
||||||
pref("network.http.throttle.version", 2);
|
pref("network.http.throttle.version", 2);
|
||||||
|
#else
|
||||||
|
pref("network.http.throttle.version", 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
// V1 prefs
|
// V1 prefs
|
||||||
pref("network.http.throttle.suspend-for", 900);
|
pref("network.http.throttle.suspend-for", 900);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue