diff --git a/envoy/extensions/filters/http/decompressor/v3/decompressor.proto b/envoy/extensions/filters/http/decompressor/v3/decompressor.proto index 82e1bc02..bfcd1c67 100644 --- a/envoy/extensions/filters/http/decompressor/v3/decompressor.proto +++ b/envoy/extensions/filters/http/decompressor/v3/decompressor.proto @@ -25,6 +25,9 @@ message Decompressor { // Runtime flag that controls whether the filter is enabled for decompression or not. If set to false, the // filter will operate as a pass-through filter. If the message is unspecified, the filter will be enabled. config.core.v3.RuntimeFeatureFlag enabled = 1; + + // If set to true, will decompress response even if a *no-transform* cache control header is set. + bool ignore_no_transform_header = 2; } // Configuration for filter behavior on the request direction.