AP inboxの最小リトライ間隔 1秒→1分 (#5818)
This commit is contained in:
parent
2a5a055d1c
commit
67496de411
|
@ -109,7 +109,7 @@ export function inbox(activity: any, signature: httpSignature.IParsedSignature)
|
||||||
attempts: config.inboxJobMaxAttempts || 8,
|
attempts: config.inboxJobMaxAttempts || 8,
|
||||||
backoff: {
|
backoff: {
|
||||||
type: 'exponential',
|
type: 'exponential',
|
||||||
delay: 1000
|
delay: 60 * 1000
|
||||||
},
|
},
|
||||||
removeOnComplete: true,
|
removeOnComplete: true,
|
||||||
removeOnFail: true
|
removeOnFail: true
|
||||||
|
|
Loading…
Reference in New Issue