You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/core/Akka/Pattern/RetrySupport.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -45,12 +45,12 @@ public static Task<T> Retry<T>(Func<Task<T>> attempt, int attempts) =>
45
45
/// <param name="maxBackoff">the exponential back-off is capped to this duration.</param>
46
46
/// <param name="randomFactor">after calculation of the exponential back-off an additional random delay based on this factor is added, e.g. `0.2` adds up to `20%` delay. In order to skip this additional delay pass in `0`.</param>
47
47
/// <param name="scheduler">The scheduler instance to use.</param>
0 commit comments