Kue只运行一次这个工作

时间:2017-08-05 10:15:06

标签: kue

我使用kue来安排一份工作,但它只是第一次执行。

这是我的代码:

Queue.clear(function(error, response) {
    var job = Queue
                .createJob("sendStatus")
                .priority('normal')
                .removeOnComplete(true);
    Queue.every('20 seconds', job);
    Queue.process("sendStatus", telegram.checkStatus);
});

1 个答案:

答案 0 :(得分:0)

I forgot to call done() on checkStatus