From 069547e944bad1c2c1a0fb232ebf6159fc359ca8 Mon Sep 17 00:00:00 2001 From: Soheil Hassas Yeganeh <soheil@google.com> Date: Sun, 28 Apr 2019 17:14:05 -0400 Subject: [PATCH] Fix a typo in chttp2 stream initialization. Found this during performance optimizations. We always reinitialize this to the correct value, so this wasn't caught in tests. --- src/core/ext/transport/chttp2/transport/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ext/transport/chttp2/transport/internal.h b/src/core/ext/transport/chttp2/transport/internal.h index 2e2b3251b4..00b1fe18b2 100644 --- a/src/core/ext/transport/chttp2/transport/internal.h +++ b/src/core/ext/transport/chttp2/transport/internal.h @@ -633,7 +633,7 @@ struct grpc_chttp2_stream { GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS; /* Stream decompression method to be used. */ grpc_stream_compression_method stream_decompression_method = - GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS; + GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS; /** Stream compression decompress context */ grpc_stream_compression_context* stream_decompression_ctx = nullptr; /** Stream compression compress context */ -- GitLab