diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-06-22 12:26:36 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-06-22 12:26:36 -0700 |
commit | 606e35a4fb2a6e7dd711e7a2eec6c59bf6f2258b (patch) | |
tree | 2c87283f47b6a2465cfd44b0b274dc0251b242cd /src/csharp/Grpc.IntegrationTesting | |
parent | 9fc079fddd2fc1bad958d6f7f7063363437426a5 (diff) |
add C# constant for GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/InteropClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs index 17ef587d16..e27fe5b3d8 100644 --- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs +++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs @@ -724,7 +724,7 @@ namespace Grpc.IntegrationTesting var algorithmName = compressed ? "gzip" : "identity"; return new Metadata { - { new Metadata.Entry("grpc-internal-encoding-request", algorithmName) } + { new Metadata.Entry(Metadata.CompressionRequestAlgorithmMetadataKey, algorithmName) } }; } |