mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Update job queue settings
This commit is contained in:
parent
9cd78999c1
commit
2a6183a56f
1 changed files with 5 additions and 2 deletions
|
@ -12,7 +12,10 @@ const queue = new Queue('misskey', {
|
|||
},
|
||||
|
||||
removeOnSuccess: true,
|
||||
removeOnFailure: true
|
||||
removeOnFailure: true,
|
||||
getEvents: false,
|
||||
sendEvents: false,
|
||||
storeJobs: false
|
||||
});
|
||||
|
||||
export function createHttpJob(data: any) {
|
||||
|
@ -32,5 +35,5 @@ export function deliver(user: ILocalUser, content: any, to: any) {
|
|||
}
|
||||
|
||||
export default function() {
|
||||
queue.process(8, http);
|
||||
queue.process(128, http);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue