Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion source/common/runtime/runtime_features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ RUNTIME_GUARD(envoy_reloadable_features_http1_balsa_disallow_lone_cr_in_chunk_ex
RUNTIME_GUARD(envoy_reloadable_features_http2_discard_host_header);
RUNTIME_GUARD(envoy_reloadable_features_http2_include_cookies_in_limits);
RUNTIME_GUARD(envoy_reloadable_features_http2_propagate_reset_events);
RUNTIME_GUARD(envoy_reloadable_features_http2_use_oghttp2);
RUNTIME_GUARD(envoy_reloadable_features_http3_remove_empty_cookie);
// Delay deprecation and decommission until UHV is enabled.
RUNTIME_GUARD(envoy_reloadable_features_http_reject_path_with_fragment);
Expand Down Expand Up @@ -216,6 +215,9 @@ FALSE_RUNTIME_GUARD(envoy_reloadable_features_fixed_heap_use_allocated);
// TODO(yavlasov): Enabling by default will be hugely disruptive to existing traffic.
// Replace with a config option (default off) post CVE release.
FALSE_RUNTIME_GUARD(envoy_reloadable_features_reject_early_connect_data);
// Flip back to true once performance aligns with nghttp2 and
// https://github.com/envoyproxy/envoy/issues/40070 is resolved.
FALSE_RUNTIME_GUARD(envoy_reloadable_features_http2_use_oghttp2);

// Enable histograms of HTTP/2 header sizes, including cookie size.
FALSE_RUNTIME_GUARD(envoy_reloadable_features_http2_record_histograms);
Expand Down
Loading