aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-06-22 08:45:59 -0700
committerGravatar GitHub <noreply@github.com>2016-06-22 08:45:59 -0700
commitb2a18c8758053b94e56d5b29a6d80fa78997e978 (patch)
tree7d144533ed0d6ed4be2984a251c0ff48a0c0b002
parent00ab5304b784b230053e49fd864477a845e80d5b (diff)
parentbe3745529715745901245073233bf2fd8f282b00 (diff)
Merge pull request #6984 from jtattermusch/fix_6930
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);
}
}