From 080e335395875abf05aa131e2f2b256107863384 Mon Sep 17 00:00:00 2001 From: "bojan.malinic" Date: Mon, 12 Aug 2024 13:11:22 +0200 Subject: [PATCH] Increase minimal polling time --- src/ConductorSharp.Engine/Polling/InverseExponentialBackoff.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConductorSharp.Engine/Polling/InverseExponentialBackoff.cs b/src/ConductorSharp.Engine/Polling/InverseExponentialBackoff.cs index 1cb6f75b..43ebab2b 100644 --- a/src/ConductorSharp.Engine/Polling/InverseExponentialBackoff.cs +++ b/src/ConductorSharp.Engine/Polling/InverseExponentialBackoff.cs @@ -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;