summaryrefslogtreecommitdiff
path: root/src/queue
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-02-03 21:05:38 +0900
committerGitHub <noreply@github.com>2020-02-03 21:05:38 +0900
commit67496de411572e4f1f1d26ee9bb68a57339e3aa0 (patch)
treec3b88062e50d837adce71fe4d81d143a9ab3a75f /src/queue
parentページバック前に判定を追加 (#5822) (diff)
downloadsharkey-67496de411572e4f1f1d26ee9bb68a57339e3aa0.tar.gz
sharkey-67496de411572e4f1f1d26ee9bb68a57339e3aa0.tar.bz2
sharkey-67496de411572e4f1f1d26ee9bb68a57339e3aa0.zip
AP inboxの最小リトライ間隔 1秒→1分 (#5818)
Diffstat (limited to 'src/queue')
-rw-r--r--src/queue/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/index.ts b/src/queue/index.ts
index b1437da8b6..76e26d8e46 100644
--- a/src/queue/index.ts
+++ b/src/queue/index.ts
@@ -109,7 +109,7 @@ export function inbox(activity: any, signature: httpSignature.IParsedSignature)
attempts: config.inboxJobMaxAttempts || 8,
backoff: {
type: 'exponential',
- delay: 1000
+ delay: 60 * 1000
},
removeOnComplete: true,
removeOnFail: true