Skip to content

Commit 096a791

Browse files
Edits
1 parent 82f850b commit 096a791

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In the following code example, we configure the retry options in an instance of
3535

3636
```java
3737
RequestRetryOptions retryOptions = new RequestRetryOptions(RetryPolicyType.FIXED, 2, 3, 1000L, 1500L, null);
38-
BlobServiceClient storageClient = new BlobServiceClientBuilder()
38+
BlobServiceClient client = new BlobServiceClientBuilder()
3939
.endpoint("https://<storage-account-name>.blob.core.windows.net/")
4040
.credential(credential)
4141
.retryOptions(retryOptions)
@@ -45,7 +45,7 @@ BlobServiceClient storageClient = new BlobServiceClientBuilder()
4545

4646
In this example, each service request issued from the `BlobServiceClient` object uses the retry options as defined in the `RequestRetryOptions` instance. You can configure various retry strategies for service clients based on the needs of your app.
4747

48-
## Next steps
49-
Now that you understand how to implement a retry policy using the Azure Storage client library for Java, see the following articles for more detailed architectural guidance:
48+
## Related content
49+
5050
- For architectural guidance and general best practices for retry policies, see [Transient fault handling](/azure/architecture/best-practices/transient-faults).
5151
- For guidance on implementing a retry pattern for transient failures, see [Retry pattern](/azure/architecture/patterns/retry).

0 commit comments

Comments
 (0)