Skip to content

Commit

Permalink
Increase minimal polling time
Browse files Browse the repository at this point in the history
  • Loading branch information
boma96 committed Aug 12, 2024
1 parent 952f339 commit 080e335
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace ConductorSharp.Engine.Polling
internal class InverseExponentialBackoff : IPollTimingStrategy
{
private const int _backoffRatio = 2;
private const int _recoveryValue = 50;
private const int _recoveryValue = 250;
private readonly TimeSpan _recoveryInterval = TimeSpan.FromMilliseconds(5000);

private DateTimeOffset _lastRecoveryTime = DateTimeOffset.UtcNow;
Expand Down

0 comments on commit 080e335

Please sign in to comment.