mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1242926 - Increase the max retry attempt number. r=mcmanus
This commit is contained in:
parent
fbf2580b8c
commit
e7df5bd97a
@ -1330,7 +1330,7 @@ pref("network.http.max-persistent-connections-per-proxy", 32);
|
||||
pref("network.http.request.max-start-delay", 10);
|
||||
|
||||
// If a connection is reset, we will retry it max-attempts times.
|
||||
pref("network.http.request.max-attempts", 3);
|
||||
pref("network.http.request.max-attempts", 6);
|
||||
|
||||
// Headers
|
||||
pref("network.http.accept.default", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
|
||||
|
@ -143,7 +143,7 @@ nsHttpHandler::nsHttpHandler()
|
||||
, mResponseTimeout(PR_SecondsToInterval(300))
|
||||
, mResponseTimeoutEnabled(false)
|
||||
, mNetworkChangedTimeout(5000)
|
||||
, mMaxRequestAttempts(3)
|
||||
, mMaxRequestAttempts(6)
|
||||
, mMaxRequestDelay(10)
|
||||
, mIdleSynTimeout(250)
|
||||
, mH2MandatorySuiteEnabled(false)
|
||||
|
Loading…
Reference in New Issue
Block a user