DEV: Increase max reports dashboard limit (#29806)

This commit is contained in:
Rafael dos Santos Silva 2024-11-18 15:54:35 -03:00 committed by GitHub
parent 235c6434c1
commit d85bc1eff6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const MAX_JOB_SIZE = 4;
const MAX_CONCURRENCY = 3; const MAX_CONCURRENCY = 3;
// max number of jobs stored, first entered jobs will be evicted first // max number of jobs stored, first entered jobs will be evicted first
const MAX_QUEUE_SIZE = 20; const MAX_QUEUE_SIZE = 40;
const BULK_REPORTS_ENDPOINT = "/admin/reports/bulk"; const BULK_REPORTS_ENDPOINT = "/admin/reports/bulk";