You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using the provider to get a list of list of available service tags for our Azure Firewall automation (via https://management.azure.com/subscriptions/.../providers/Microsoft.Network/locations/westeurope/serviceTags. This API is rate limited, which is currently not handled by the provider.
│ --------------------------------------------------------------------------------
│ RESPONSE 429: 429 Too Many Requests
│ ERROR CODE: RetryableError
│ --------------------------------------------------------------------------------
│ {
│ "error": {
│ "code": "RetryableError",
│ "message": "A retryable error occurred.",
│ "details": [
│ {
│ "code": "RetryableErrorDueToTooManyCallsToThisOperation",
│ "message": "Operation GetServiceTagsOperation exceeded throttling limit of 5 calls within last 5 minutes. The number of calls exceeds Microsoft.Network throttling limit. The call can be retried in 76 seconds."
│ }
│ ]
│ }
│ }
│ --------------------------------------------------------------------------------
I would expect that the provider handles these automatically, honoring the related rety-after headers.
The text was updated successfully, but these errors were encountered:
We're using the provider to get a list of list of available service tags for our Azure Firewall automation (via
https://management.azure.com/subscriptions/.../providers/Microsoft.Network/locations/westeurope/serviceTags
. This API is rate limited, which is currently not handled by the provider.I would expect that the provider handles these automatically, honoring the related
rety-after
headers.The text was updated successfully, but these errors were encountered: