Skip to content
Snippets Groups Projects
Commit 069547e9 authored by Soheil Hassas Yeganeh's avatar Soheil Hassas Yeganeh
Browse files

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.
parent 77eb7306
No related branches found
No related tags found
No related merge requests found
...@@ -633,7 +633,7 @@ struct grpc_chttp2_stream { ...@@ -633,7 +633,7 @@ struct grpc_chttp2_stream {
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS; GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS;
/* Stream decompression method to be used. */ /* Stream decompression method to be used. */
grpc_stream_compression_method stream_decompression_method = grpc_stream_compression_method stream_decompression_method =
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS; GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS;
/** Stream compression decompress context */ /** Stream compression decompress context */
grpc_stream_compression_context* stream_decompression_ctx = nullptr; grpc_stream_compression_context* stream_decompression_ctx = nullptr;
/** Stream compression compress context */ /** Stream compression compress context */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment