fix: scheduled git sync task (#4481)
Signed-off-by: Paul Saunders <paul.saunders@finbourne.com> Co-authored-by: Rainshaw <rxg@live.com>
This commit is contained in:
parent
1dc974245f
commit
66bf914725
@ -32,7 +32,7 @@ class Job {
|
||||
if (this.immediate) {
|
||||
this.invoke(data)
|
||||
} else {
|
||||
this.queue(data)
|
||||
this.enqueue(data)
|
||||
}
|
||||
}
|
||||
|
||||
@ -41,7 +41,7 @@ class Job {
|
||||
*
|
||||
* @param {Object} data Job Data
|
||||
*/
|
||||
queue(data) {
|
||||
enqueue(data) {
|
||||
this.timeout = setTimeout(this.invoke.bind(this), this.schedule.asMilliseconds(), data)
|
||||
}
|
||||
|
||||
@ -85,7 +85,7 @@ class Job {
|
||||
WIKI.logger.warn(err)
|
||||
}
|
||||
if (this.repeat && this.queue.jobs.includes(this)) {
|
||||
this.queue(data)
|
||||
this.enqueue(data)
|
||||
} else {
|
||||
this.stop().catch(() => {})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user