From 891fc7e5c68565a8bda365ec4385d15e59110573 Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Tue, 2 Jun 2020 03:32:11 +0000 Subject: [PATCH] decompressor: fix logs and docs (#11393) Signed-off-by: Jose Nino Mirrored from https://github.com/envoyproxy/envoy @ 3b52fc36373272902d9817f0db97dd2fccc40784 --- envoy/extensions/compression/gzip/decompressor/v3/gzip.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto index 097531ab..0ab0d947 100644 --- a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto +++ b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto @@ -20,8 +20,9 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; message Gzip { // Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size. // The decompression window size needs to be equal or larger than the compression window size. - // The default is 15 per zlib's manual. For more details about this parameter, please refer to - // zlib manual > inflateInit2. + // The default is 12 to match the default in the + // :ref:`gzip compressor `. + // For more details about this parameter, please refer to `zlib manual `_ > inflateInit2. google.protobuf.UInt32Value window_bits = 1 [(validate.rules).uint32 = {lte: 15 gte: 9}]; // Value for zlib's decompressor output buffer. If not set, defaults to 4096.