Fix job count for waiting jobs
This commit is contained in:
parent
acd9eaeb1d
commit
4300cc1ee1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue