From cc5a7894be8b1b18390f6d3b40cf205e9e456a23 Mon Sep 17 00:00:00 2001 From: KirillKurdyukov Date: Wed, 14 Aug 2024 20:39:17 +0300 Subject: [PATCH] fix kek --- slo/src/Internal/SloContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slo/src/Internal/SloContext.cs b/slo/src/Internal/SloContext.cs index 1e12d0f6..9b25ba9f 100644 --- a/slo/src/Internal/SloContext.cs +++ b/slo/src/Internal/SloContext.cs @@ -189,7 +189,7 @@ Task ShootingTask(RateLimitPolicy rateLimitPolicy, string shootingName, _logger.LogInformation(e, "Waiting {ShootingName} task, count active tasks: {}", shootingName, Interlocked.Read(ref activeTasks)); - await Task.Delay(e.RetryAfter, cancellationTokenSource.Token); + await Task.Delay(990, cancellationTokenSource.Token); } }