queue
queue copied to clipboard
Asynchronous Job Queue
This PR introduces support for multi-node deployments in high availability. As a bonus this also works on odoo.sh because of the similar deployment architecture (separate and independent odoo processes connecting...
This option appears to have been renamed to "has_headers" in base_import.
When job fails because of concurrent update error, it does not respect max retries set by the job. Problem is that ``perform`` method logic that handles re-try is never called,...
# Todo https://github.com/OCA/maintainer-tools/wiki/Migration-to-version-17.0 # Modules to migrate - [ ] base_export_async - [ ] base_import_async - [x] queue_job - By @nguyenminhchien - #593 - [x] queue_job_cron - By @nguyenminhchien -...
```python c = cm.get_channel_by_name('root.sub.not.configured', parent_fallback=True) # c.fullname should be "root.sub.not.configured", instand of "root.sub.sub.not.configured" assert c.fullname == "root.sub.not.configured" ```
When you need to handle failed jobs, there is no clear way to do it. For example, I have group of jobs that are part of chain. And that chain...
When installing queue_job on odoo 16 community + enterprise edition, the queue_job does not start correctly (although jobs seems to be aunched correctly) and the log displays the same error...
As odoo add a lock while running cron task we should only try to write on it. If the cron is running while create new queue job records we will...