Skip to content

Commit 9a23d91

Browse files
authored
Merge pull request #101086 from tamram/patch-66
Update storage-designing-ha-apps-with-ragrs.md
2 parents 642aa1f + 93c1fd8 commit 9a23d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/common/storage-designing-ha-apps-with-ragrs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: tamram
77

88
ms.service: storage
99
ms.topic: conceptual
10-
ms.date: 12/04/2019
10+
ms.date: 01/14/2020
1111
ms.author: tamram
1212
ms.reviewer: artek
1313
ms.subservice: common
@@ -95,7 +95,7 @@ There are many ways to handle update requests when running in read-only mode. We
9595

9696
## Handling retries
9797

98-
The Azure Storage client library helps you determine which errors can be retried. For example, a 404 error (resource not found) can be retried because retrying it is not likely to result in success. On the other hand, a 500 error cannot be retried because it is a server error, and it may simply be a transient issue. For more details, check out the [open source code for the ExponentialRetry class](https://github.com/Azure/azure-storage-net/blob/87b84b3d5ee884c7adc10e494e2c7060956515d0/Lib/Common/RetryPolicies/ExponentialRetry.cs) in the .NET storage client library. (Look for the ShouldRetry method.)
98+
The Azure Storage client library helps you determine which errors can be retried. For example, a 404 error (resource not found) would not be retried because retrying it is not likely to result in success. On the other hand, a 500 error can be retried because it is a server error, and the problem may simply be a transient issue. For more details, check out the [open source code for the ExponentialRetry class](https://github.com/Azure/azure-storage-net/blob/87b84b3d5ee884c7adc10e494e2c7060956515d0/Lib/Common/RetryPolicies/ExponentialRetry.cs) in the .NET storage client library. (Look for the ShouldRetry method.)
9999

100100
### Read requests
101101

0 commit comments

Comments
 (0)