mirror of
https://github.com/actions/versions-package-tools.git
synced 2025-12-11 03:56:46 +00:00
Change RetryCount
This commit is contained in:
@@ -3,8 +3,8 @@ class AzureDevOpsApi
|
||||
[string] $BaseUrl
|
||||
[string] $RepoOwner
|
||||
[object] $AuthHeader
|
||||
[UInt32] $RetryCount = 0
|
||||
[UInt32] $RetryIntervalSec = 30
|
||||
[UInt32] $RetryCount
|
||||
[UInt32] $RetryIntervalSec
|
||||
|
||||
AzureDevOpsApi(
|
||||
[string] $TeamFoundationCollectionUri,
|
||||
@@ -15,13 +15,8 @@ class AzureDevOpsApi
|
||||
) {
|
||||
$this.BaseUrl = $this.BuildBaseUrl($TeamFoundationCollectionUri, $ProjectName)
|
||||
$this.AuthHeader = $this.BuildAuth($AccessToken)
|
||||
|
||||
if ($RetryCount -gt 0) {
|
||||
$this.RetryCount = $RetryCount
|
||||
}
|
||||
if ($RetryIntervalSec -gt 0) {
|
||||
$this.RetryIntervalSec = $RetryIntervalSec
|
||||
}
|
||||
$this.RetryCount = $RetryCount
|
||||
$this.RetryIntervalSec = $RetryIntervalSec
|
||||
}
|
||||
|
||||
[object] hidden BuildAuth([string]$AccessToken) {
|
||||
@@ -96,8 +91,8 @@ function Get-AzureDevOpsApi {
|
||||
[string] $TeamFoundationCollectionUri,
|
||||
[string] $ProjectName,
|
||||
[string] $AccessToken,
|
||||
[UInt32] $RetryCount,
|
||||
[UInt32] $RetryIntervalSec
|
||||
[UInt32] $RetryCount = 3,
|
||||
[UInt32] $RetryIntervalSec = 30
|
||||
)
|
||||
|
||||
return [AzureDevOpsApi]::New($TeamFoundationCollectionUri, $ProjectName, $AccessToken, $RetryCount, $RetryIntervalSec)
|
||||
|
||||
@@ -9,7 +9,7 @@ param (
|
||||
[Parameter(Mandatory)] [bool] $WaitForBuilds,
|
||||
[string] $ToolVersions,
|
||||
[UInt32] $RetryIntervalSec = 30,
|
||||
[UInt32] $RetryCount = 20
|
||||
[UInt32] $RetryCount = 3
|
||||
)
|
||||
|
||||
Import-Module (Join-Path $PSScriptRoot "azure-devops-api.ps1")
|
||||
|
||||
Reference in New Issue
Block a user