From f5eff6bb0fcf01d81c60d35c683e49758d41aa37 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 25 Aug 2026 11:19:49 +0200 Subject: [PATCH] Fix data gathering blocked by failed jobs --- libs/common/src/lib/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/lib/config.ts b/libs/common/src/lib/config.ts index 8d64e7a94..7ecbf8f11 100644 --- a/libs/common/src/lib/config.ts +++ b/libs/common/src/lib/config.ts @@ -220,7 +220,7 @@ export const GATHER_HISTORICAL_MARKET_DATA_PROCESS_JOB_OPTIONS: JobOptions = { }; export const GATHER_STATISTICS_PROCESS_JOB_OPTIONS: JobOptions = { - attempts: 5, // Retries after 1, 2, 4 and 8 minutes (15 minutes in total) + attempts: 6, // Retries after 1, 2, 4, 8 and 16 minutes (31 minutes in total) backoff: { delay: ms('1 minute'), type: 'exponential'