We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
powershellgallery.com
www.powershellgallery.com
Redirect from powershellgallery.com to www.powershellgallery.com is down, which causes this to timeout for me:
Test-Connection -TargetName 'powershellgallery.com' -TcpPort 443 -IPv4 -Detailed -TimeoutSeconds 10
While this succeeds fast:
Test-Connection -TargetName 'www.powershellgallery.com' -TcpPort 443 -IPv4 -Detailed -TimeoutSeconds 10
Same as with www.powershellgallery.com in following example.
PS > Test-Connection -TargetName 'www.powershellgallery.com' -TcpPort 443 -IPv4 -Detailed -TimeoutSeconds 10 Target: www.powershellgallery.com Id Source Address Port Latency Connected Status (ms) -- ------ ------- ---- ------- --------- ------ 1 <redacted> 13.107.246.53 443 10 True Success PS >
PS > Test-Connection -TargetName 'powershellgallery.com' -TcpPort 443 -IPv4 -Detailed -TimeoutSeconds 10 Target: powershellgallery.com Id Source Address Port Latency Connected Status (ms) -- ------ ------- ---- ------- --------- ------ 1 <redacted> 20.112.250.133 443 0 False TimedOut PS >
No response
Not relevant
The text was updated successfully, but these errors were encountered:
Now it works again. \(〇_o)/
\(〇_o)/
Sorry, something went wrong.
It has been extra slow and timed out for hours now.
I use Site24x7 free tier to monitor it, it does HTTP HEAD from Seattle. I've set timeout to 15 seconds, poll every 10 minutes.
Should be equivalent to doing something like this?
0 .. 100 | ForEach-Object -Process { $Started = [datetime]::Now $Stopwatch = [System.Diagnostics.Stopwatch]::StartNew() $Success = [bool]$( Try { $null = Invoke-RestMethod -Method 'Head' -Uri 'https://powershellgallery.com' -ConnectionTimeoutSeconds 15 $? } Catch { $false } ) $Stopwatch.Stop() [PSCustomObject]@{ 'Id' = [uint16] $_ 'Started' = [datetime] $Started 'Success' = [bool] $Success 'RountripSeconds' = [double]($Success ? $Stopwatch.'Elapsed'.'TotalSeconds' : $null) } }
No branches or pull requests
Prerequisites
Steps to reproduce
Redirect from
powershellgallery.com
towww.powershellgallery.com
is down, which causes this to timeout for me:While this succeeds fast:
Expected behavior
Same as with
www.powershellgallery.com
in following example.Actual behavior
Error details
No response
Environment data
Version
Not relevant
Visuals
No response
The text was updated successfully, but these errors were encountered: