Bug 1513135 - disable flow control of HTTP e10s back pressure r=dragana

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Junior Hsu 2018-12-13 23:41:33 +00:00
Родитель 87f5a1c15a
Коммит 45e7f94fce
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1900,9 +1900,11 @@ pref("network.http.rcwn.max_wait_before_racing_ms", 500);
// all available active connections.
pref("network.http.focused_window_transaction_ratio", "0.9");
// XXX Disable for intranet downloading issue.
// This is the size of the flow control window (KB) (i.e., the amount of data
// that the parent can send to the child before getting an ack)
pref("network.http.send_window_size", 1024);
// that the parent can send to the child before getting an ack). 0 for disable
// the flow control.
pref("network.http.send_window_size", 0);
// Whether or not we give more priority to active tab.
// Note that this requires restart for changes to take effect.