From 41cd11bbf7346649a8cca904472a4a0705ecb688 Mon Sep 17 00:00:00 2001 From: riku6460 <17585784+riku6460@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:14:44 +0900 Subject: [PATCH] =?UTF-8?q?redisForJobQueue=20=E3=81=AE=20maxRetriesPerReq?= =?UTF-8?q?uest=20=E3=82=92=20null=20=E3=81=AB=E3=81=99=E3=82=8B=20(Misske?= =?UTF-8?q?yIO#272)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/GlobalModule.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/backend/src/GlobalModule.ts b/packages/backend/src/GlobalModule.ts index 5b9c71ac51..7fc8d72d21 100644 --- a/packages/backend/src/GlobalModule.ts +++ b/packages/backend/src/GlobalModule.ts @@ -84,6 +84,7 @@ const $redisForJobQueue: Provider = { useFactory: (config: Config) => { return new Redis.Redis({ ...config.redisForJobQueue, + maxRetriesPerRequest: null, keyPrefix: undefined, }); },