소스 검색

add missing ConfigureAwait(false)

Jan Tattermusch 9 년 전
부모
커밋
be37455297
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/csharp/Grpc.Core/GrpcEnvironment.cs

+ 1 - 1
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);
             }
             }
         }
         }