From e9e7916238c368de76512df258eebfd9a5ed09c5 Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Fri, 18 Oct 2024 08:48:34 -0700 Subject: [PATCH] Increase NuGet Chain Build Retry Policy --- eng/common/Install-DotNetSdk.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/Install-DotNetSdk.ps1 b/eng/common/Install-DotNetSdk.ps1 index ad675848..1ba23b6c 100644 --- a/eng/common/Install-DotNetSdk.ps1 +++ b/eng/common/Install-DotNetSdk.ps1 @@ -54,6 +54,6 @@ else { } # See https://github.com/NuGet/NuGet.Client/pull/4259 -$Env:NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY = "3,1000" +$Env:NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY = "6,1500" if ($InstallFailed) { throw "Failed to install the .NET Core SDK" }