diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-07-26 17:15:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-07-26 17:15:00 +0900 |
| commit | ac07f04ad82a40deb45c763f31ae6ded33a91c79 (patch) | |
| tree | 4d6cc27388905beb7df40007d2071876ab282c2b /src/queue | |
| parent | Fix bug (diff) | |
| download | sharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.tar.gz sharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.tar.bz2 sharkey-ac07f04ad82a40deb45c763f31ae6ded33a91c79.zip | |
Update job queue setting
Diffstat (limited to 'src/queue')
| -rw-r--r-- | src/queue/index.ts | 4 |
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(); } |