File tree 1 file changed +6
-3
lines changed 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>(
97
97
98
98
try
99
99
{
100
- httpResp = await _http . SendAsync ( httpReq , cancellationToken ) ;
100
+ httpResp = await _http . SendAsync ( httpReq , cancellationToken )
101
+ . ConfigureAwait ( false ) ;
101
102
102
103
var transformedResponse = await TransformResponse (
103
104
httpReq . Method ,
@@ -337,7 +338,8 @@ async Task<Error> GetTrybeError()
337
338
}
338
339
else
339
340
{
340
- Error ? error = await GetTrybeError ( ) ;
341
+ Error ? error = await GetTrybeError ( )
342
+ . ConfigureAwait ( false ) ;
341
343
342
344
return new TrybeResponse (
343
345
method ,
@@ -418,7 +420,8 @@ async Task<Error> GetTrybeError()
418
420
}
419
421
else
420
422
{
421
- Error ? error = await GetTrybeError ( ) ;
423
+ Error ? error = await GetTrybeError ( )
424
+ . ConfigureAwait ( false ) ;
422
425
423
426
return new TrybeResponse < TResponse > (
424
427
method ,
You can’t perform that action at this time.
0 commit comments