@@ -25,7 +25,7 @@ public class YdbRetryPolicyConfig
2525 /// <remarks>
2626 /// The total number of attempts will be MaxAttempts (including the initial attempt).
2727 /// Setting this to 1 disables retries entirely.
28- /// Default value: 10.
28+ /// <para> Default value: 10.</para>
2929 /// </remarks>
3030 public int MaxAttempts { get ; init ; } = 10 ;
3131
@@ -36,7 +36,7 @@ public class YdbRetryPolicyConfig
3636 /// This is used for errors that typically resolve quickly, such as temporary
3737 /// unavailability or TLI (Transaction Lock Invalidated).
3838 /// The actual delay will be calculated using exponential backoff with jitter.
39- /// Default value: 5 ms.
39+ /// <para> Default value: 5 ms.</para>
4040 /// </remarks>
4141 public int FastBackoffBaseMs { get ; init ; } = 5 ;
4242
@@ -47,7 +47,7 @@ public class YdbRetryPolicyConfig
4747 /// This is used for errors that may take longer to resolve, such as overload
4848 /// or resource exhaustion. The actual delay will be calculated using
4949 /// exponential backoff with jitter.
50- /// Default value: 50 ms.
50+ /// <para> Default value: 50 ms.</para>
5151 /// </remarks>
5252 public int SlowBackoffBaseMs { get ; init ; } = 50 ;
5353
@@ -57,7 +57,7 @@ public class YdbRetryPolicyConfig
5757 /// <remarks>
5858 /// This caps the maximum delay for fast backoff to prevent excessively long waits.
5959 /// The exponential backoff will not exceed this value.
60- /// Default value: 500 ms.
60+ /// <para> Default value: 500 ms.</para>
6161 /// </remarks>
6262 public int FastCapBackoffMs { get ; init ; } = 500 ;
6363
@@ -67,7 +67,7 @@ public class YdbRetryPolicyConfig
6767 /// <remarks>
6868 /// This caps the maximum delay for slow backoff to prevent excessively long waits.
6969 /// The exponential backoff will not exceed this value.
70- /// Default value: 5000 ms.
70+ /// <para> Default value: 5000 ms.</para>
7171 /// </remarks>
7272 public int SlowCapBackoffMs { get ; init ; } = 5_000 ;
7373
@@ -80,7 +80,7 @@ public class YdbRetryPolicyConfig
8080 /// some statuses (like unavailable) don't indicate whether the server processed the
8181 /// operation - the connection might have been lost during the response. Enable this
8282 /// only if you are certain that the operations being retried are idempotent.
83- /// Default value: false.
83+ /// <para> Default value: false.</para>
8484 /// </remarks>
8585 public bool EnableRetryIdempotence { get ; init ; } = false ;
8686
0 commit comments