diff options
author | David G. Quintas <dgq@google.com> | 2015-09-23 15:49:46 -0700 |
---|---|---|
committer | David G. Quintas <dgq@google.com> | 2015-09-23 15:49:46 -0700 |
commit | e5515d476d953080517f4fc0725154e26b2418d9 (patch) | |
tree | 01dc2b6a218e5d085f521d749da12382a7363b82 /src/csharp/Grpc.IntegrationTesting | |
parent | 16672d1f4389ea2eb1cee8903ed457094ac839e6 (diff) | |
parent | 6b3de015d22c9cc249631e3c21be3a2cbf8a9a89 (diff) |
Merge pull request #3372 from grpc/release-0_11
Release 0.11 to master upmerge.
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 0884c6ea60..616093d4ae 100644 --- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs +++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs @@ -131,7 +131,7 @@ namespace Grpc.IntegrationTesting var channel = new Channel(options.ServerHost, options.ServerPort, credentials, channelOptions); TestService.TestServiceClient client = new TestService.TestServiceClient(channel); await RunTestCaseAsync(client, options); - channel.ShutdownAsync().Wait(); + await channel.ShutdownAsync(); } private async Task RunTestCaseAsync(TestService.TestServiceClient client, ClientOptions options) |