Browse Source

Task/increase default limit of getJobs() in queue service (#7105)

Increase default limit of getJobs()
pull/7107/head
Thomas Kaul 5 days ago
committed by GitHub
parent
commit
9db16e9d2c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      apps/api/src/app/admin/queue/queue.service.ts

2
apps/api/src/app/admin/queue/queue.service.ts

@ -56,7 +56,7 @@ export class QueueService {
}
public async getJobs({
limit = 1000,
limit = 5000,
status = QUEUE_JOB_STATUS_LIST
}: {
limit?: number;

Loading…
Cancel
Save