Update job queue settings
This commit is contained in:
parent
93786aa510
commit
e1e1cd0574
|
@ -12,7 +12,10 @@ const queue = new Queue('misskey', {
|
||||||
},
|
},
|
||||||
|
|
||||||
removeOnSuccess: true,
|
removeOnSuccess: true,
|
||||||
removeOnFailure: true
|
removeOnFailure: true,
|
||||||
|
getEvents: false,
|
||||||
|
sendEvents: false,
|
||||||
|
storeJobs: false
|
||||||
});
|
});
|
||||||
|
|
||||||
export function createHttpJob(data: any) {
|
export function createHttpJob(data: any) {
|
||||||
|
@ -32,5 +35,5 @@ export function deliver(user: ILocalUser, content: any, to: any) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function() {
|
export default function() {
|
||||||
queue.process(8, http);
|
queue.process(128, http);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue