summaryrefslogtreecommitdiff
path: root/src/queue/index.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-07-26 17:15:00 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-07-26 17:15:00 +0900
commitac07f04ad82a40deb45c763f31ae6ded33a91c79 (patch)
tree4d6cc27388905beb7df40007d2071876ab282c2b /src/queue/index.ts
parentFix bug (diff)
downloadsharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.tar.gz
sharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.tar.bz2
sharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.zip
Update job queue setting
Diffstat (limited to 'src/queue/index.ts')
-rw-r--r--src/queue/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/queue/index.ts b/src/queue/index.ts
index 2589e026e1..775e5f199d 100644
--- a/src/queue/index.ts
+++ b/src/queue/index.ts
@@ -20,8 +20,8 @@ const queue = new Queue('misskey', {
export function createHttpJob(data: any) {
return queue.createJob(data)
- .retries(4)
- .backoff('exponential', 16384) // 16s
+ //.retries(4)
+ //.backoff('exponential', 16384) // 16s
.save();
}