Issue with Cron Jobs Configuration - Unable to Delete or Update

Error - Build Failed
You cannot create more than 2 Cron Jobs on your current plan. You’re currently using 1 Cron Jobs. This deployment will create 2. Upgrade your plan at Find a plan to power your projects. or discuss with our sales teams if you need more Cron Jobs.

Description of the problem:

  1. I attempted to delete an existing Cron Job and add two new ones.
  2. Despite deleting the existing Cron Job, I’m still receiving an error stating that I’m trying to create more than 2 Cron Jobs.
  3. I’m unable to update or delete existing Cron Jobs through the user interface.

Steps I’ve already taken:

  1. Tried to delete the existing Cron Job through the code.
  2. Cleared my browser cache and tried again.
  3. Checked Vercel’s status page to ensure there are no system-wide issues.

The Cron Jobs configuration I’m trying to implement:
{
“crons”: [
{
“path”: “/api/cron/send_reminders”,
“schedule”: “0 7 * * *”
},
{
“path”: “/api/cron/sync_persons_list”,
“schedule”: “0 8 * * *”
}
]
}

I would greatly appreciate your help in resolving this issue. Could you please check if there’s a specific problem with my account or suggest additional ways to solve this issue?

Thank you in advance for your assistance

Hey @hadarhubara10. I checked your account to confirm that there is still one existing cron job in one of your projects. That does need to be removed before you can add two new cron jobs as the Hobby scheduling limit is 2 cron jobs triggered once per day.

To delete the existing cron job, you need to remove it from the vercel.json config and create a new production deployment (e.g. push the change to your main branch or use vercel deploy --prod). Please give that a try and let me know whether or not it works for you.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.