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.
pull/18899/head
Soheil Hassas Yeganeh 6 years ago
parent 77eb7306d8
commit 069547e944
  1. 2
      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 */

Loading…
Cancel
Save