Skip to content

Commit

Permalink
fix: do not remove metadata job on fail (#1303)
Browse files Browse the repository at this point in the history
do not remove metadata job on fail
  • Loading branch information
justraman authored Sep 23, 2024
1 parent 70f0c2a commit 422396d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/process-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const metadataQueue = new Queue<JobData>('metadataQueue', {
delay: 5000,
},
removeOnComplete: true,
removeOnFail: true,
removeOnFail: false,
},
redis: redisConfig,
settings: {
Expand Down

0 comments on commit 422396d

Please sign in to comment.