mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
increase retry delay for reconnection retry policy
This commit is contained in:
parent
25f0e7bf03
commit
63f931fdcf
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue