DEV Community

James Scott
James Scott

Posted on

Odoo Automated Actions: Scheduled Actions Not Running

Question

I created a scheduled action in Odoo, but it’s not executing. What could be the issue?

Problem

Scheduled actions fail due to incorrect cron job setup, missing permissions, or a broken Odoo worker.

Solution

  • Verify that the cron job is enabled: bash
sudo systemctl status odoo.service

Enter fullscreen mode Exit fullscreen mode
  • Check if the cron is correctly configured in Technical > Scheduled Actions.
  • Ensure the ir.cron model is not disabled: sql
UPDATE ir_cron SET active = TRUE WHERE name = 'Your Cron Job Name';
Enter fullscreen mode Exit fullscreen mode
  • If running on a multi-worker setup, restart workers after changes.

Build secure, scalable, and feature-rich platforms tailored to your business needs. From custom module development to multi-company management, get end-to-end solutions for your Odoo implementation project. Let’s streamline your business operations and drive efficiency with Odoo Implementation Services.

Top comments (0)