redisForJobQueue の maxRetriesPerRequest を null にする (MisskeyIO#272)

This commit is contained in:
riku6460 2023-11-29 13:14:44 +09:00 committed by GitHub
parent 98e5db7a73
commit 41cd11bbf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ const $redisForJobQueue: Provider = {
useFactory: (config: Config) => {
return new Redis.Redis({
...config.redisForJobQueue,
maxRetriesPerRequest: null,
keyPrefix: undefined,
});
},