Skip to content
Snippets Groups Projects
Unverified Commit 4cebd6e8 authored by syuilo's avatar syuilo
Browse files

Increase job attempts limit a little

parent 90fbf9db
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ export function deliver(user: ILocalUser, content: any, to: any) {
};
return deliverQueue.add(data, {
attempts: 4,
attempts: 8,
backoff: {
type: 'exponential',
delay: 1000
......@@ -52,7 +52,7 @@ export function inbox(activity: any, signature: httpSignature.IParsedSignature)
};
return inboxQueue.add(data, {
attempts: 4,
attempts: 8,
backoff: {
type: 'exponential',
delay: 1000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment