diff --git a/src/Microsoft.Azure.NotificationHubs/BasicRetryPolicy.cs b/src/Microsoft.Azure.NotificationHubs/BasicRetryPolicy.cs index 178c027..7f5eb08 100644 --- a/src/Microsoft.Azure.NotificationHubs/BasicRetryPolicy.cs +++ b/src/Microsoft.Azure.NotificationHubs/BasicRetryPolicy.cs @@ -37,7 +37,8 @@ internal class BasicRetryPolicy : NotificationHubRetryPolicy /// The factor to apply to the base delay for use as a base jitter value. /// /// - /// This factor is used as the basis for random jitter to apply to the calculated retry duration. + /// This factor is used as the basis for random jitter to apply to the calculated retry duration. + /// It defines the magnitude of a random offset for retry backoff intervals, to amortize request spikes from this client. /// public double JitterFactor { get; } = 0.08;