Skip to content

Commit

Permalink
fix: skip stalled check for nlm parse, they take too long time.
Browse files Browse the repository at this point in the history
  • Loading branch information
irony committed Nov 13, 2024
1 parent 4ff21dc commit 93a6ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workers/nlmParsePDF.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const nlmParsePDF = new DiscordWorker(
throw new UnrecoverableError(`Download Failed: ${error.message}`)
}
},
{ concurrency: 1, connection: redis }
{ concurrency: 1, connection: redis, skipStalledCheck: true }
)

export default nlmParsePDF

0 comments on commit 93a6ef2

Please sign in to comment.