Increase RetryIntervalSec

This commit is contained in:
MaksimZhukov
2020-06-16 14:37:52 +03:00
parent ca5ee91832
commit 6543512f08
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ function Get-AzureDevOpsApi {
[string] $ProjectName, [string] $ProjectName,
[string] $AccessToken, [string] $AccessToken,
[UInt32] $RetryCount = 3, [UInt32] $RetryCount = 3,
[UInt32] $RetryIntervalSec = 30 [UInt32] $RetryIntervalSec = 60
) )
return [AzureDevOpsApi]::New($TeamFoundationCollectionUri, $ProjectName, $AccessToken, $RetryCount, $RetryIntervalSec) return [AzureDevOpsApi]::New($TeamFoundationCollectionUri, $ProjectName, $AccessToken, $RetryCount, $RetryIntervalSec)

View File

@@ -8,7 +8,7 @@ param (
[Parameter(Mandatory)] [string] $ManifestLink, [Parameter(Mandatory)] [string] $ManifestLink,
[Parameter(Mandatory)] [bool] $WaitForBuilds, [Parameter(Mandatory)] [bool] $WaitForBuilds,
[string] $ToolVersions, [string] $ToolVersions,
[UInt32] $RetryIntervalSec = 30, [UInt32] $RetryIntervalSec = 60,
[UInt32] $RetryCount = 3 [UInt32] $RetryCount = 3
) )