summaryrefslogtreecommitdiff
path: root/src/queue/processors/object-storage
diff options
context:
space:
mode:
Diffstat (limited to 'src/queue/processors/object-storage')
-rw-r--r--src/queue/processors/object-storage/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/processors/object-storage/index.ts b/src/queue/processors/object-storage/index.ts
index f2fc08f1ab..60f732ca64 100644
--- a/src/queue/processors/object-storage/index.ts
+++ b/src/queue/processors/object-storage/index.ts
@@ -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);
}
}