fix(api/queue): tighten expiries on billingQueue jobs

This commit is contained in:
Gergő Móricz 2025-05-29 16:26:52 +02:00
parent 93655b5c0b
commit c9dd0e609a

View File

@ -120,10 +120,10 @@ export function getBillingQueue() {
connection: redisConnection, connection: redisConnection,
defaultJobOptions: { defaultJobOptions: {
removeOnComplete: { removeOnComplete: {
age: 90000, // 25 hours age: 3600, // 1 hour
}, },
removeOnFail: { removeOnFail: {
age: 90000, // 25 hours age: 3600, // 1 hour
}, },
}, },
}); });