Skip to content

Commit 8e78d0a

Browse files
committed
- Fixed ps1 parameter documentation.
1 parent a01c3cc commit 8e78d0a

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

eng/pipelines/onebranch/jobs/validate-symbols.ps1

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@
3333
.PARAMETER SymbolServerName
3434
A friendly display name for the symbol server, used in log output.
3535
36+
.PARAMETER MaxRetries
37+
Maximum number of attempts when symbols are not yet available. The
38+
first attempt runs immediately; subsequent attempts wait
39+
RetryIntervalSeconds between them. Defaults to 10 (~5 minutes total
40+
with default interval).
41+
42+
.PARAMETER RetryIntervalSeconds
43+
Seconds to wait between retry attempts (default 30).
44+
3645
.EXAMPLE
3746
.\validate-symbols.ps1 `
3847
-ArtifactPath "C:\agent\_work\1\drop_SqlClient" `
@@ -63,12 +72,8 @@ param(
6372
[Parameter(Mandatory)]
6473
[string]$SymbolServerName,
6574

66-
# Maximum number of attempts when symbols are not yet available. The first
67-
# attempt runs immediately; subsequent attempts wait RetryIntervalSeconds
68-
# between them. Defaults to 10 (~5 minutes total with default interval).
6975
[int]$MaxRetries = 10,
7076

71-
# Seconds to wait between retry attempts (default 30).
7277
[int]$RetryIntervalSeconds = 30
7378
)
7479

0 commit comments

Comments
 (0)