mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
851 B
851 B
id, title, pagination_label, sidebar_label, sidebar_position, sidebar_class_name, keywords, description, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_position | sidebar_class_name | keywords | description | slug | tags | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| powershell-sdk-retries | Retries with the PowerShell SDK | PowerShell SDK | Retries | 6 | powershellsdk |
|
Learn how to configure retries using the PowerShell SDK in this guide. | /tools/sdk/powershell/retries |
|
The SDK supports retry logic in the case of an unexpected error. You have these two retry configuration options:
- MaximumRetryCount - How many times to retry the request. Default is 10 retries.
- RetryIntervalSeconds - How many seconds to wait between retries. Default is 5 seconds.
The following code will tell the SDK to retry 2 times after an unexpected error and wait 3 seconds between retries.
Set-DefaultConfiguration -MaximumRetryCount 2 -RetryIntervalSeconds 3