From e098ccc98eb73dcfcf4fcb0a329617d9c54d04a7 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Mon, 23 Mar 2026 23:16:20 +0200 Subject: [PATCH] lowered Sonarr CF sync delay to 100-500ms --- .../Features/Jobs/CustomFormatScoreSyncer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Features/Jobs/CustomFormatScoreSyncer.cs b/code/backend/Cleanuparr.Infrastructure/Features/Jobs/CustomFormatScoreSyncer.cs index a0783ddf..e145028f 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/Jobs/CustomFormatScoreSyncer.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/Jobs/CustomFormatScoreSyncer.cs @@ -228,7 +228,7 @@ public sealed class CustomFormatScoreSyncer : IHandler } // Rate limit to avoid overloading the Sonarr API - await Task.Delay(Random.Shared.Next(500, 1500), cancellationToken); + await Task.Delay(Random.Shared.Next(100, 500), cancellationToken); } if (itemsInChunk.Count == 0)