forked from mirrors/gecko-dev
Bug 1874464 - Disable speculative connections for test_retry_0rtt.js r=necko-reviewers,kershaw
Differential Revision: https://phabricator.services.mozilla.com/D203583
This commit is contained in:
parent
faccba9704
commit
0b3f87d615
1 changed files with 6 additions and 0 deletions
|
|
@ -48,6 +48,12 @@ add_setup(
|
|||
);
|
||||
let nssComponent = Cc["@mozilla.org/psm;1"].getService(Ci.nsINSSComponent);
|
||||
await nssComponent.asyncClearSSLExternalAndInternalSessionCache();
|
||||
|
||||
// See Bug 1878505
|
||||
Services.prefs.setIntPref("network.http.speculative-parallel-limit", 0);
|
||||
registerCleanupFunction(async () => {
|
||||
Services.prefs.clearUserPref("network.http.speculative-parallel-limit");
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue