add speedtest stuff

This commit is contained in:
Stanley Dimant
2024-11-18 12:38:32 +01:00
parent cc36485907
commit d23fa867e0
4 changed files with 155 additions and 4 deletions

View File

@@ -168,6 +168,10 @@ public class FileTransferOrchestrator : DisposableMediatorSubscriberBase
return await _httpClient.SendAsync(requestMessage, httpCompletionOption, ct.Value).ConfigureAwait(false);
return await _httpClient.SendAsync(requestMessage, httpCompletionOption).ConfigureAwait(false);
}
catch (TaskCanceledException)
{
throw;
}
catch (Exception ex)
{
Logger.LogWarning(ex, "Error during SendRequestInternal for {uri}", requestMessage.RequestUri);