aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-21 15:11:33 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-21 15:11:33 -0700
commitbe3745529715745901245073233bf2fd8f282b00 (patch)
treeb4de4809dea96d2270176c6c2489d9eea5cd1733
parent176a55729ee38a663ee98dd6f76c2b35936e8c64 (diff)
add missing ConfigureAwait(false)
-rw-r--r--src/csharp/Grpc.Core/GrpcEnvironment.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/GrpcEnvironment.cs b/src/csharp/Grpc.Core/GrpcEnvironment.cs
index e9e4cb4cbb..58bb180251 100644
--- a/src/csharp/Grpc.Core/GrpcEnvironment.cs
+++ b/src/csharp/Grpc.Core/GrpcEnvironment.cs
@@ -105,7 +105,7 @@ namespace Grpc.Core
if (instanceToShutdown != null)
{
- await instanceToShutdown.ShutdownAsync();
+ await instanceToShutdown.ShutdownAsync().ConfigureAwait(false);
}
}