Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage
}
catch (OperationCanceledException ex) when (!cancellationToken.IsCancellationRequested)
{
throw new TaskCanceledException($"The request was canceled due to the configured HttpClient.Timeout of {_timeout.TotalSeconds} seconds elapsing.", new TimeoutException(ex.Message, ex));
throw new TaskCanceledException($"The request was canceled because the configured HttpClient.Timeout of {_timeout.TotalSeconds} seconds elapsed.", new TimeoutException(ex.Message, ex));
}
}
return await base.SendAsync(request, cancellationToken);
Expand Down