Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在安排一个议程工作,如下所示:
await agenda.now("xyz");
但是上面的命令使我的工作几乎每 1 分钟运行一次。但是当我把它改成
await agenda.every('5 minutes', "xyz");
以上按预期工作,即它每 5 分钟运行一次作业。
但我不想要一份经常性的工作。而是运行一次。
问题在于concurrency工作定义。它被设置为10因为同一作业的多个实例并行运行。
concurrency
10
更改concurrency以1解决问题。
1