Retry Parameters Setup (Optional)
The retry parameter steps are optional.
The SecretServer.SecureStore plugin includes a retry mechanism in the credential store plugin, which can improve the success rate of retrieving secrets from Secret Server. If the server is busy with multiple requests from different processes, the retry mechanism can help establish a successful connection.
This functionality is enabled by default with the following values.
-
RetryCount: 2
-
RetryInterval: 3000
-
RetryEnable: true
To change the default values, you must configure the UiPath.Orchestrator.dll.config file.
How to Configure the Retry Parameters in the UiPath.Orchestrator.dll.config File
-
Go to the UiPath directory and modify the UiPath.Orchestrator.dll.config.
- Add an additional section under configSections
<section name="SecureStoreSetting" type="System.Configuration.NameValueSectionHandler"/ -
<SecureStoreSetting>
<add key="RetryCount" value="3" />
<add key="RetryEnable" value="true" />
<add key="RetryInterval" value="5000" />
</SecureStoreSetting>
- Restart the UiPath Orchestrator service.