Browse Source

Fix data gathering blocked by failed jobs

pull/7720/head
Thomas Kaul 5 days ago
parent
commit
f5eff6bb0f
  1. 2
      libs/common/src/lib/config.ts

2
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'

Loading…
Cancel
Save