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(); });