2018-02-27 13:46:56 +01:00
|
|
|
import { isTestInstance } from '../../helpers/core-utils'
|
2018-02-27 11:08:59 +01:00
|
|
|
import { logger } from '../../helpers/logger'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { JobQueue } from '../job-queue'
|
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2019-04-11 14:26:41 +02:00
|
|
|
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
|
|
|
export class RemoveOldJobsScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
|
2018-06-14 18:06:56 +02:00
|
|
|
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.removeOldJobs
|
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
2018-12-20 14:31:11 +01:00
|
|
|
protected internalExecute () {
|
|
|
|
if (!isTestInstance()) logger.info('Removing old jobs in scheduler.')
|
2018-02-27 11:08:59 +01:00
|
|
|
|
2018-12-20 14:31:11 +01:00
|
|
|
return JobQueue.Instance.removeOldJobs()
|
2018-01-25 15:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|