Simon

Results 4 comments of Simon

I just had the same issue with versions 1.79.2 and 1.80.1. I had to run `TRUNCATE TABLE public.execution_entity CASCADE;` to restore the service

Hi @amh-mw, thank you for your response. I will increase the limit-time-* values and see if this helps. I looked at the jobs in another batch, and all of them...

found the root cause of this issue. a race condition in the batch state recompute when multiple jobs finish at the same time (and using at least 2 channels). This...

@remi-filament, due to other work priorities, I haven't tested anything yet. As a workaround, we have a cron running `check_state()` periodically: ```python env['queue.job.batch'].search([('state', '=', 'progress')]).check_state() env.cr.commit() ``` Hope it helps...