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.
我在 gcloud 计算实例上设置了一个 cron 作业。它在我的本地上按预期运行,但在 gcloud 实例上它等到第一次运行,然后开始无限循环执行,没有时间间隔。
async function runScript() { ... } cron.schedule("* */30 * * * *", () => { runScript(); });
所以我仍然不知道问题是什么,但我想出了一个解决方案。
cron-job 需要按以下方式设置:
cron.schedule("0 */30 * * * *", () => {
现在它在 vm 上也运行良好