Skip to content
Snippets Groups Projects
Unverified Commit ed0070c4 authored by syuilo's avatar syuilo
Browse files

Set job concurrency to reduce performance issue

parent d7643167
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,6 @@ const jobs = {
export default function(q: Bull.Queue) {
for (const [k, v] of Object.entries(jobs)) {
q.process(k, v as any);
q.process(k, 16, v as any);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment