Fix job count for waiting jobs

pull/6206/head
Chocobozzz 2024-02-15 13:40:53 +01:00
parent acd9eaeb1d
commit 4300cc1ee1
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ class JobQueue {
}
async count (state: JobState, jobType?: JobType): Promise<number> {
const states = state ? [ state ] : jobStates
const states = this.buildStateFilter(state)
const filteredJobTypes = this.buildTypeFilter(jobType)
let total = 0