Browse Source
Task/increase default limit of getJobs() in queue service (#7105)
Increase default limit of getJobs()
pull/7107/head
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/api/src/app/admin/queue/queue.service.ts
|
|
@ -56,7 +56,7 @@ export class QueueService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public async getJobs({ |
|
|
public async getJobs({ |
|
|
limit = 1000, |
|
|
limit = 5000, |
|
|
status = QUEUE_JOB_STATUS_LIST |
|
|
status = QUEUE_JOB_STATUS_LIST |
|
|
}: { |
|
|
}: { |
|
|
limit?: number; |
|
|
limit?: number; |
|
|
|