aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp
diff options
context:
space:
mode:
authorGravatar Eric Anderson <ejona@google.com>2016-10-13 12:23:00 -0700
committerGravatar GitHub <noreply@github.com>2016-10-13 12:23:00 -0700
commit58628ae7a70feff295fc7f44de60686439a2beca (patch)
tree1185a94d1c750771c4a8c7cd549e1b1606ebea9e /src/csharp
parent770137b01ded519a78126031cc00b2afc377bb39 (diff)
parent2d41ed1613f29faad634210b378ab0e43a11c2ee (diff)
Merge pull request #8361 from ncteisen/csharp_custom_metadata
Bug Fix in CSharp Interop Client
Diffstat (limited to 'src/csharp')
-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 79fd18b6d5..cb926328e0 100644
--- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
+++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
@@ -520,12 +520,12 @@ namespace Grpc.IntegrationTesting
};
var call = client.FullDuplexCall(headers: CreateTestMetadata());
- var responseHeaders = await call.ResponseHeadersAsync;
await call.RequestStream.WriteAsync(request);
await call.RequestStream.CompleteAsync();
await call.ResponseStream.ToListAsync();
+ var responseHeaders = await call.ResponseHeadersAsync;
var responseTrailers = call.GetTrailers();
Assert.AreEqual("test_initial_metadata_value", responseHeaders.First((entry) => entry.Key == "x-grpc-test-echo-initial").Value);