From 6543512f08b5e73db75746ba59beddcdd6aa709e Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Tue, 16 Jun 2020 14:37:52 +0300 Subject: [PATCH] Increase RetryIntervalSec --- azure-devops/azure-devops-api.ps1 | 2 +- azure-devops/run-ci-builds.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-devops/azure-devops-api.ps1 b/azure-devops/azure-devops-api.ps1 index b4c35e0..bb5ed1e 100644 --- a/azure-devops/azure-devops-api.ps1 +++ b/azure-devops/azure-devops-api.ps1 @@ -92,7 +92,7 @@ function Get-AzureDevOpsApi { [string] $ProjectName, [string] $AccessToken, [UInt32] $RetryCount = 3, - [UInt32] $RetryIntervalSec = 30 + [UInt32] $RetryIntervalSec = 60 ) return [AzureDevOpsApi]::New($TeamFoundationCollectionUri, $ProjectName, $AccessToken, $RetryCount, $RetryIntervalSec) diff --git a/azure-devops/run-ci-builds.ps1 b/azure-devops/run-ci-builds.ps1 index 349db47..cd93837 100644 --- a/azure-devops/run-ci-builds.ps1 +++ b/azure-devops/run-ci-builds.ps1 @@ -8,7 +8,7 @@ param ( [Parameter(Mandatory)] [string] $ManifestLink, [Parameter(Mandatory)] [bool] $WaitForBuilds, [string] $ToolVersions, - [UInt32] $RetryIntervalSec = 30, + [UInt32] $RetryIntervalSec = 60, [UInt32] $RetryCount = 3 )