Next.js Discord

Discord Forum

Cron Job Not Running

Unanswered
Oriental posted this in #help-forum
Open in Discord
OrientalOP
Hi, I am attempting to create a cron job. The cron job I created correctly shows up on my Vercel dashboard. But the cron job does not run at the scheduled time - it does not run at all, even though it says the correct time on the Vercel dashboard. This is my vercel.json file:
{
    "crons": [{
      "path": "/api/cron",
      "schedule": "35 4 * * *"
    }]
  }

And I used Postman to verify that /api/cron works correctly.

1 Reply