aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-10-16 15:27:15 -0700
committerGravatar Muxi Yan <mxyan@google.com>2017-10-16 15:27:15 -0700
commit1b1c9b387bcd98f08b8c17f6ee15095c099dd665 (patch)
treee3453bc003f6ce6278396e89147768a760328fce
parent5c69e38dcca17a169b41c73a0f7f5c906cdb599b (diff)
Fix csharp build
-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 e83a8a7274..10c31c455e 100644
--- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
+++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
@@ -685,7 +685,7 @@ namespace Grpc.IntegrationTesting
private static Metadata CreateClientCompressionMetadata(bool compressed)
{
- var algorithmName = compressed ? "gzip" : "identity";
+ var algorithmName = compressed ? "message/gzip" : "identity";
return new Metadata
{
{ new Metadata.Entry(Metadata.CompressionRequestAlgorithmMetadataKey, algorithmName) }