Merge pull request #6984 from jtattermusch/fix_6930

Add missing ConfigureAwait(false)
pull/7005/head
Jan Tattermusch 9 years ago committed by GitHub
commit b2a18c8758
  1. 2
      src/csharp/Grpc.Core/GrpcEnvironment.cs

@ -105,7 +105,7 @@ namespace Grpc.Core
if (instanceToShutdown != null) if (instanceToShutdown != null)
{ {
await instanceToShutdown.ShutdownAsync(); await instanceToShutdown.ShutdownAsync().ConfigureAwait(false);
} }
} }

Loading…
Cancel
Save