Backed out changeset 1c61a551fa53 (bug 1909910) for causing webtransport related wpt failures.

This commit is contained in:
Stanca Serban 2024-07-30 14:08:29 +03:00
parent 0223e0dbd0
commit 3bb50e3495
2 changed files with 1 additions and 9 deletions

View File

@ -13653,13 +13653,6 @@
mirror: always
rust: true
# Whether to enable Packetization Layer Path MTU Discovery.
- name: network.http.http3.pmtud
type: RelaxedAtomicBool
value: @IS_NIGHTLY_BUILD@
mirror: always
rust: true
# When true, a http request will be upgraded to https when HTTPS RR is
# available.
- name: network.dns.upgrade_with_https_rr

View File

@ -219,8 +219,7 @@ impl NeqoHttp3Conn {
.cc_algorithm(cc_algorithm)
.max_data(max_data)
.max_stream_data(StreamType::BiDi, false, max_stream_data)
.grease(static_prefs::pref!("security.tls.grease_http3_enable"))
.pmtud(static_prefs::pref!("network.http.http3.pmtud"));
.grease(static_prefs::pref!("security.tls.grease_http3_enable"));
// Set a short timeout when fuzzing.
#[cfg(feature = "fuzzing")]