-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.)
0 commit comments