File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ protected internal async Task<TrybeResponse> SendAsync<TRequest>(
9797
9898 try
9999 {
100- httpResp = await _http . SendAsync ( httpReq , cancellationToken ) ;
100+ httpResp = await _http . SendAsync ( httpReq , cancellationToken )
101+ . ConfigureAwait ( false ) ;
101102
102103 var transformedResponse = await TransformResponse (
103104 httpReq . Method ,
@@ -337,7 +338,8 @@ async Task<Error> GetTrybeError()
337338 }
338339 else
339340 {
340- Error ? error = await GetTrybeError ( ) ;
341+ Error ? error = await GetTrybeError ( )
342+ . ConfigureAwait ( false ) ;
341343
342344 return new TrybeResponse (
343345 method ,
@@ -418,7 +420,8 @@ async Task<Error> GetTrybeError()
418420 }
419421 else
420422 {
421- Error ? error = await GetTrybeError ( ) ;
423+ Error ? error = await GetTrybeError ( )
424+ . ConfigureAwait ( false ) ;
422425
423426 return new TrybeResponse < TResponse > (
424427 method ,
You can’t perform that action at this time.
0 commit comments