add some connectivity changes
This commit is contained in:
@@ -7,6 +7,6 @@ public class ForeverRetryPolicy : IRetryPolicy
|
||||
{
|
||||
public TimeSpan? NextRetryDelay(RetryContext retryContext)
|
||||
{
|
||||
return TimeSpan.FromSeconds(5);
|
||||
return TimeSpan.FromSeconds(new Random().Next(5, 20));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user