Skip to content

Commit 99692d3

Browse files
authored
Apply suggestions from code review
1 parent c58efa2 commit 99692d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/blobs/storage-retry-policy-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ The following table lists the parameters available when constructing a [RequestR
2626
| --- | --- | --- | --- |
2727
| `retryPolicyType` | [RetryPolicyType](/java/api/com.azure.storage.common.policy.retrypolicytype) | Optional. The approach to use for calculating retry delays. | [EXPONENTIAL](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-exponential) |
2828
| `maxTries` | Integer | Optional. The maximum number of retry attempts before giving up. | 4 |
29-
| `tryTimeoutInSeconds` | Integer | Optional. Maximum time allowed before a request is cancelled and assumed failed. Note that the timeout applies to the operation request, not the overall operation end to end. This value should be based on the bandwidth available to the host machine and proximity to the Storage service. A good starting point might be 60 seconds per MB of anticipated payload size. | Integer.MAX_VALUE (seconds) |
29+
| `tryTimeoutInSeconds` | Integer | Optional. Maximum time allowed before a request is canceled and assumed failed. Note that the timeout applies to the operation request, not the overall operation end to end. This value should be based on the bandwidth available to the host machine and proximity to the Storage service. A good starting point might be 60 seconds per MB of anticipated payload size. | Integer.MAX_VALUE (seconds) |
3030
| `retryDelayInMs` | Long | Optional. Specifies the amount of delay to use before retrying an operation. | 4ms for [EXPONENTIAL](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-exponential), 30ms for [FIXED](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-fixed) |
3131
| `maxRetryDelayInMs` | Long | Optional. Specifies the maximum delay allowed before retrying an operation. | 120ms |
32-
| `secondaryHost` | String | Optional. Secondary storage account endpoint to retry requests against. Before setting this value, you should understand the issues around reading stale and potentially inconsistent data. To learn more, see [Use geo-redundancy to design highly available applications](../common/geo-redundant-design.md) | None |
32+
| `secondaryHost` | String | Optional. Secondary storage account endpoint to retry requests against. Before setting this value, you should understand the issues around reading stale and potentially inconsistent data. To learn more, see [Use geo-redundancy to design highly available applications](../common/geo-redundant-design.md). | None |
3333

3434
In the following code example, we configure the retry options in an instance of [RequestRetryOptions](/java/api/com.azure.storage.common.policy.requestretryoptions) and pass it to `BlobServiceClientBuilder` to create a client object:
3535

0 commit comments

Comments
 (0)