aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.IntegrationTesting
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-22 12:26:36 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-22 12:26:36 -0700
commit606e35a4fb2a6e7dd711e7a2eec6c59bf6f2258b (patch)
tree2c87283f47b6a2465cfd44b0b274dc0251b242cd /src/csharp/Grpc.IntegrationTesting
parent9fc079fddd2fc1bad958d6f7f7063363437426a5 (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.cs2
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) }
};
}