add missing ConfigureAwait(false)

pull/6984/head
Jan Tattermusch 9 years ago
parent 176a55729e
commit be37455297
  1. 2
      src/csharp/Grpc.Core/GrpcEnvironment.cs

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

Loading…
Cancel
Save