File tree Expand file tree Collapse file tree
eng/pipelines/onebranch/jobs Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments