Skip to content

Commit 6e881a6

Browse files
author
Yi Zhong
committed
change to bullets
1 parent 86330b9 commit 6e881a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/iot-hub/iot-hub-reliability-features-in-sdks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ The overall process for retry when connection errors are detected is:
6262
5. The SDK allows the user to attach a callback to receive connection status changes.
6363

6464
Three retry policies are provided:
65-
1) **Exponential back-off with jitter**: This is the default retry policy applied. It tends to be aggressive at the start, slows down, and then hits a maximum delay that is not exceeded. The design is based on [Retry guidance from Azure Architecture Center](https://docs.microsoft.com/azure/architecture/best-practices/retry-service-specific).
66-
2) **Custom retry**: You can implement a custom retry policy and inject it in the RetryPolicy depending on the language you choose. You can design a retry policy that is suited for your scenario. This is not available on the C SDK.
67-
3) **No retry**: There is an option to set retry policy to "no retry," which disables the retry logic. The SDK tries to connect once and send a message once, assuming the connection is established. This policy would typically be used in cases where there are bandwidth or cost concerns. If this option is chosen, messages that fail to send are lost and cannot be recovered.
65+
- **Exponential back-off with jitter**: This is the default retry policy applied. It tends to be aggressive at the start, slows down, and then hits a maximum delay that is not exceeded. The design is based on [Retry guidance from Azure Architecture Center](https://docs.microsoft.com/azure/architecture/best-practices/retry-service-specific).
66+
- **Custom retry**: You can implement a custom retry policy and inject it in the RetryPolicy depending on the language you choose. You can design a retry policy that is suited for your scenario. This is not available on the C SDK.
67+
- **No retry**: There is an option to set retry policy to "no retry," which disables the retry logic. The SDK tries to connect once and send a message once, assuming the connection is established. This policy would typically be used in cases where there are bandwidth or cost concerns. If this option is chosen, messages that fail to send are lost and cannot be recovered.
6868

6969
### Retry policy APIs
7070

0 commit comments

Comments
 (0)