Skip to content

Commit 530cdbd

Browse files
Review feedback
1 parent 1ecce6b commit 530cdbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following table lists the parameters available when creating a [StorageRetry
2929
| `retryDelayInMs` | `number` | Optional. Specifies the amount of delay to use before retrying an operation. | 4 seconds (or 4 * 1000 ms) |
3030
| `retryPolicyType` | [StorageRetryPolicyType](/javascript/api/@azure/storage-blob/storageretrypolicytype) | Optional. StorageRetryPolicyType, default is exponential retry policy. | StorageRetryPolicyType.Exponential |
3131
| `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-
| `tryTimeoutInMs` | `number` | Optional. Maximum time allowed before a request is canceled and assumed failed. This 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. | |
32+
| `tryTimeoutInMs` | `number` | Optional. Maximum time allowed before a request is canceled and assumed failed. This timeout applies to the operation request, and should be based on the bandwidth available to the host machine and proximity to the Storage service. | A value of 0 or undefined results in no default timeout on the client, and the server-side default timeout is used. To learn more, see [Timeouts for Blob service operations](/rest/api/storageservices/setting-timeouts-for-blob-service-operations). |
3333

3434
In the following code example, we configure the retry options in an instance of [StorageRetryOptions](/javascript/api/@azure/storage-blob/storageretryoptions), pass it to a new [StoragePipelineOptions](/javascript/api/@azure/storage-blob/storagepipelineoptions) instance, and pass `pipeline` when instantiating `BlobServiceClient`:
3535

0 commit comments

Comments
 (0)