René's URL Explorer Experiment


Title: Retries in WebCmdlet does not respect Retry-After header in 429 status · Issue #19621 · PowerShell/PowerShell · GitHub

Open Graph Title: Retries in WebCmdlet does not respect Retry-After header in 429 status · Issue #19621 · PowerShell/PowerShell

X Title: Retries in WebCmdlet does not respect Retry-After header in 429 status · Issue #19621 · PowerShell/PowerShell

Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerShell 5.1 and PowerShell. Steps to reprodu...

Open Graph Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

X Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

Opengraph URL: https://github.com/PowerShell/PowerShell/issues/19621

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Retries in WebCmdlet does not respect Retry-After header in 429 status","articleBody":"### Prerequisites\n\n- [X] Write a descriptive title.\n- [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases)\n- [X] Search the existing issues.\n- [X] Refer to the [FAQ](https://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md).\n- [X] Refer to [Differences between Windows PowerShell 5.1 and PowerShell](https://docs.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell).\n\n### Steps to reproduce\n\nThe improvements of the PowerShell 7.4.0 (Preview) notes that WebCmdlets (`Invoke-WebRequest` and `Invoke-RestMethod`) follow the retry interval specified in the Retry-After header for status code 429 (Too Many Requests), but it does not actually follow it.\r\n\r\nI tested this by running a server on the local machine that always returns status 429 and Retry-After: 2.\r\n\r\nWhen I run the `Invoke-WebRequest` with `-MaximumRetryCount 2`, it retries with the default retry interval of 5 seconds instead of the 2 seconds specified in Retry-After header value.\r\n\r\n```PowerShell\r\nPS C:\\\u003e Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCount 2 -Verbose\r\nVERBOSE: HTTP/1.1 GET with 0-byte payload\r\nVERBOSE: Retrying after interval of 5 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: Retrying after interval of 5 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: received 5-byte response of content type text/plain\r\n\r\nPS C:\\\u003e $Error[0].Exception.Response.StatusCode.Value__\r\n429\r\n\r\nPS C:\\\u003e $Error[0].Exception.Response.Headers\r\n\r\nKey         Value\r\n---         -----\r\nRetry-After {2}\r\nServer      {Microsoft-HTTPAPI/2.0}\r\nDate        {Sat, 06 May 2023 17:25:42 GMT}\r\n```\r\n\r\nI try the same thing with `curl 8.0.1`, the retry is performed correctly at 2 second intervals.\r\n\r\n```cmd\r\nC:\\\u003e curl.exe --retry 2 \"http://localhost:8080/test\"\r\nRetryWarning: Problem : HTTP error. Will retry in 2 seconds. 2 retries left.\r\nRetryWarning: Problem : HTTP error. Will retry in 2 seconds. 1 retries left.\r\n```\r\n\r\nSince this change was implemented in PR #18717, I checked the source code and found an mistake in the code. It executes the retry logic at 409 (Conflict) instead of 429.\r\n\r\nhttps://github.com/CarloToso/PowerShell/blob/07e041fe10d4c753dfccfa46008bdedebdfd3027/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/WebRequestPSCmdlet.Common.cs#L1340-L1343\r\n\n\n### Expected behavior\n\n```console\nPS C:\\\u003e Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCount 2 -Verbose\r\nVERBOSE: HTTP/1.1 GET with 0-byte payload\r\nVERBOSE: Retrying after interval of 2 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: Retrying after interval of 2 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: received 5-byte response of content type text/plain\n```\n\n\n### Actual behavior\n\n```console\nPS C:\\\u003e Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCount 2 -Verbose\r\nVERBOSE: HTTP/1.1 GET with 0-byte payload\r\nVERBOSE: Retrying after interval of 5 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: Retrying after interval of 5 seconds. Status code for previous attempt: TooManyRequests\r\nVERBOSE: received 5-byte response of content type text/plain\n```\n\n\n### Error details\n\n```console\nPS C:\\\u003e Get-Error\r\n\r\nException             :\r\n    Type       : Microsoft.PowerShell.Commands.HttpResponseException\r\n    Response   : StatusCode: 429, ReasonPhrase: 'Too Many Requests', Version: 1.1, Content: System.Net.Http.HttpConnect\r\nionResponseContent, Headers:\r\n                 {\r\n                 Retry-After: 2\r\n                 Server: Microsoft-HTTPAPI/2.0\r\n                 Date: Sat, 06 May 2023 17:25:42 GMT\r\n                 Content-Length: 5\r\n                 Content-Type: text/plain\r\n                 }, Trailing Headers:\r\n                 {\r\n                 }\r\n    StatusCode : TooManyRequests\r\n    TargetSite :\r\n        Name          : ThrowTerminatingError\r\n        DeclaringType : System.Management.Automation.MshCommandRuntime, System.Management.Automation, Version=7.4.0.3,\r\nCulture=neutral, PublicKeyToken=31bf3856ad364e35\r\n        MemberType    : Method\r\n        Module        : System.Management.Automation.dll\r\n    Message    : Response status code does not indicate success: 429 (Too Many Requests).\r\n    Source     : System.Management.Automation\r\n    HResult    : -2146233088\r\n    StackTrace :\r\n   at System.Management.Automation.MshCommandRuntime.ThrowTerminatingError(ErrorRecord errorRecord)\r\nTargetObject          : Method: GET, RequestUri: 'http://localhost:8080/test', Version: 1.1, Content: \u003cnull\u003e, Headers:\r\n                        {\r\n                        User-Agent: Mozilla/5.0\r\n                        User-Agent: (Windows NT 10.0; Microsoft Windows 10.0.22621; ja-JP)\r\n                        User-Agent: PowerShell/7.4.0\r\n                        Accept-Encoding: gzip\r\n                        Accept-Encoding: deflate\r\n                        Accept-Encoding: br\r\n                        }\r\nCategoryInfo          : InvalidOperation: (Method: GET, Reques…ept-Encoding: br\r\n                        }:HttpRequestMessage) [Invoke-WebRequest], HttpResponseException\r\nFullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand\r\nErrorDetails          : Retry\r\nInvocationInfo        :\r\n    MyCommand        : Invoke-WebRequest\r\n    ScriptLineNumber : 1\r\n    OffsetInLine     : 1\r\n    HistoryId        : 34\r\n    Line             : Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCount 2 -Verbose\r\n    Statement        : Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCount 2 -Verbose\r\n    PositionMessage  : At line:1 char:1\r\n                       + Invoke-Webrequest -Uri \"http://localhost:8080/test\" -MaximumRetryCoun …\r\n                       + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n    InvocationName   : Invoke-Webrequest\r\n    CommandOrigin    : Internal\r\nScriptStackTrace      : at \u003cScriptBlock\u003e, \u003cNo file\u003e: line 1\n```\n\n\n### Environment data\n\n```powershell\nPS C:\\\u003e $PSVersionTable\r\n\r\nName                           Value\r\n----                           -----\r\nPSVersion                      7.4.0-preview.3\r\nPSEdition                      Core\r\nGitCommitId                    7.4.0-preview.3\r\nOS                             Microsoft Windows 10.0.22621\r\nPlatform                       Win32NT\r\nPSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}\r\nPSRemotingProtocolVersion      2.3\r\nSerializationVersion           1.1.0.1\r\nWSManStackVersion              3.0\n```\n\n\n### Visuals\n\n_No response_","author":{"url":"https://github.com/mkht","@type":"Person","name":"mkht"},"datePublished":"2023-05-06T17:45:30.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/19621/PowerShell/issues/19621"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d385aa02-434f-9120-b82f-b149781a35a6
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8EBA:2A8696:2D0A4B6:3D1B6BF:6A5494B6
html-safe-nonce4642b39aafe487767bdce47b8f028b0b828e6fcdaa01fff2f3b93b7aa09f4b02
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RUJBOjJBODY5NjoyRDBBNEI2OjNEMUI2QkY6NkE1NDk0QjYiLCJ2aXNpdG9yX2lkIjoiNzkwMTQ5Nzg5MzY4MDYxNjYzMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacbac17b37f947530322cf6270a0aecfbbc4139dd94469b84ed2e6ba063d626da2
hovercard-subject-tagissue:1698717217
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/PowerShell/PowerShell/19621/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2259df4398fd643189ef9b681fbb63e83d619b7291fbe0370d9703c2b6d228e4/PowerShell/PowerShell/issues/19621
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2259df4398fd643189ef9b681fbb63e83d619b7291fbe0370d9703c2b6d228e4/PowerShell/PowerShell/issues/19621
og:image:altPrerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemkht
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/PowerShell/PowerShell git https://github.com/PowerShell/PowerShell.git
octolytics-dimension-user_id11524380
octolytics-dimension-user_loginPowerShell
octolytics-dimension-repository_id49609581
octolytics-dimension-repository_nwoPowerShell/PowerShell
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id49609581
octolytics-dimension-repository_network_root_nwoPowerShell/PowerShell
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef8cfff6384f62259baea531c7f58bc7040f8dd92
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/19621#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F19621
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F19621
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=PowerShell%2FPowerShell
Reloadhttps://github.com/PowerShell/PowerShell/issues/19621
Reloadhttps://github.com/PowerShell/PowerShell/issues/19621
Reloadhttps://github.com/PowerShell/PowerShell/issues/19621
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/19621
PowerShell https://github.com/PowerShell
PowerShellhttps://github.com/PowerShell/PowerShell
Notifications https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Fork 8.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Star 54.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Code https://github.com/PowerShell/PowerShell
Issues 1.3k https://github.com/PowerShell/PowerShell/issues
Pull requests 288 https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality 3 https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
Code https://github.com/PowerShell/PowerShell
Issues https://github.com/PowerShell/PowerShell/issues
Pull requests https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
#19622https://github.com/PowerShell/PowerShell/pull/19622
Retries in WebCmdlet does not respect Retry-After header in 429 statushttps://github.com/PowerShell/PowerShell/issues/19621#top
#19622https://github.com/PowerShell/PowerShell/pull/19622
Resolution-FixedThe issue is fixed.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Resolution-Fixed%22
https://github.com/mkht
mkhthttps://github.com/mkht
on May 6, 2023https://github.com/PowerShell/PowerShell/issues/19621#issue-1698717217
latest released versionhttps://github.com/PowerShell/PowerShell/releases
FAQhttps://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md
Differences between Windows PowerShell 5.1 and PowerShellhttps://docs.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell
#18717https://github.com/PowerShell/PowerShell/pull/18717
https://github.com/CarloToso/PowerShell/blob/07e041fe10d4c753dfccfa46008bdedebdfd3027/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/WebRequestPSCmdlet.Common.cs#L1340-L1343https://github.com/CarloToso/PowerShell/blob/07e041fe10d4c753dfccfa46008bdedebdfd3027/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/WebRequestPSCmdlet.Common.cs#L1340-L1343
Resolution-FixedThe issue is fixed.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Resolution-Fixed%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.