10 writes to MaxAttempts
Microsoft.DotNet.Build.Tasks.Feed (3)
src\common\AzureStorageUtils.cs (1)
109
MaxAttempts
= 5,
src\common\GeneralUtils.cs (1)
33
MaxAttempts
= 5
src\PublishArtifactsInManifestBase.cs (1)
225
MaxAttempts
= 5,
Microsoft.DotNet.Build.Tasks.Feed.Tests (4)
PublishToSymbolServerTest.cs (4)
272
publishTask.RetryHandler = new ExponentialRetry() {
MaxAttempts
= 3, DelayBase = 1 };
315
publishTask.RetryHandler = new ExponentialRetry() {
MaxAttempts
= 3, DelayBase = 1 };
358
publishTask.RetryHandler = new ExponentialRetry() {
MaxAttempts
= 2, DelayBase = 1 };
421
publishTask.RetryHandler = new ExponentialRetry() {
MaxAttempts
= 3, DelayBase = 1};
Microsoft.DotNet.Deployment.Tasks.Links (2)
src\AkaMSLinksManager.cs (2)
57
MaxAttempts
= MaxRetries
74
MaxAttempts
= MaxRetries
Microsoft.DotNet.Helix.Sdk (1)
FindDotNetCliPackage.cs (1)
24
MaxAttempts
= 10,
8 references to MaxAttempts
Microsoft.Arcade.Common (2)
ExponentialRetry.cs (2)
43
for (int i = 0; i <
MaxAttempts
; i++)
45
string attempt = $"Attempt {i + 1}/{
MaxAttempts
}";
Microsoft.DotNet.Build.Tasks.Feed (3)
src\common\AzureStorageUtils.cs (1)
135
throw new Exception($"Failed to upload local file '{filePath}' to '{blobPath} in {retryHandler.
MaxAttempts
} attempts. See inner exception for details.", mostRecentlyCaughtException);
src\PublishArtifactsInManifestBase.cs (2)
940
$"Failed to get container id after {RetryHandler.
MaxAttempts
} attempts. See inner exception for details, {mostRecentlyCaughtException}");
997
$"Failed to download local file '{path}' after {RetryHandler.
MaxAttempts
} attempts. See inner exception for details.", mostRecentlyCaughtException);
Microsoft.DotNet.Build.Tasks.Feed.Tests (3)
PublishToSymbolServerTest.cs (3)
299
Assert.Contains($"Failed to download local file '{path}' after {publishTask.RetryHandler.
MaxAttempts
} attempts. See inner exception for details.", actualError.Message);
342
Assert.Contains($"Failed to download local file '{path}' after {publishTask.RetryHandler.
MaxAttempts
} attempts. See inner exception for details.", actualError.Message);
447
Assert.Contains($"Failed to get container id after {publishTask.RetryHandler.
MaxAttempts
} attempts. See inner exception for details,", actualError.Message);