From 67496de411572e4f1f1d26ee9bb68a57339e3aa0 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Mon, 3 Feb 2020 21:05:38 +0900 Subject: AP inboxの最小リトライ間隔 1秒→1分 (#5818) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/queue/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/queue') 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 -- cgit v1.2.3-freya