increase retry delay for reconnection retry policy
This commit is contained in:
@@ -7,6 +7,6 @@ public class ForeverRetryPolicy : IRetryPolicy
|
||||
{
|
||||
public TimeSpan? NextRetryDelay(RetryContext retryContext)
|
||||
{
|
||||
return TimeSpan.FromSeconds(new Random().Next(5, 20));
|
||||
return TimeSpan.FromSeconds(new Random().Next(10, 20));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user