3 writes to RetryHandler
Microsoft.DotNet.Build.Tasks.Feed.Tests (3)
DownloadFileTests.cs (3)
270RetryHandler = new ExponentialRetry() { MaxAttempts = 3, DelayBase = 1 } 306RetryHandler = new ExponentialRetry() { MaxAttempts = 3, DelayBase = 1 } 380RetryHandler = new ExponentialRetry() { MaxAttempts = 3, DelayBase = 1 }
6 references to RetryHandler
Microsoft.DotNet.Build.Tasks.Feed (4)
src\PublishArtifactsInManifestBase.cs (4)
992bool success = await RetryHandler.RunAsync(async attempt => 1014$"Failed to download '{path}' after {RetryHandler.MaxAttempts} attempts. See inner exception for details.", 1026bool success = await RetryHandler.RunAsync(async attempt => 1079$"Failed to construct download URL helper after {RetryHandler.MaxAttempts} attempts. See inner exception for details, {mostRecentlyCaughtException}");
Microsoft.DotNet.Build.Tasks.Feed.Tests (2)
DownloadFileTests.cs (2)
290actualError.WithMessage($"Failed to construct download URL helper after {publishTask.RetryHandler.MaxAttempts} attempts. See inner exception for details*"); 362actualError.WithMessage($"Failed to download '{path}' after {publishTask.RetryHandler.MaxAttempts} attempts. See inner exception for details.");