Skip to content

Commit c679536

Browse files
SteveL-MSFTmsftbot[bot]
authored andcommitted
Increase time between retries of testing URL (PowerShell#11015)
1 parent fff137e commit c679536

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/common/markdown/markdown-link.tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ Describe "Verify Markdown Links" {
106106
Write-Verbose "prefix: '$prefix'" -Verbose
107107
if($url -match '^http(s)?:')
108108
{
109-
# If invoke-WebRequest can handle the URL, re-verify, with 5 retries
109+
# If invoke-WebRequest can handle the URL, re-verify, with 6 retries
110110
try
111111
{
112-
$null = Invoke-WebRequest -uri $url -RetryIntervalSec 3 -MaximumRetryCount 6
112+
$null = Invoke-WebRequest -uri $url -RetryIntervalSec 10 -MaximumRetryCount 6
113113
}
114114
catch
115115
{

0 commit comments

Comments
 (0)