Celery worker stop without any error after task completion

Celery worker running in ubuntu stops without any error after the process completion But The celery beat keeps running without any issues. Recently this problem occurs when deployed to the new server the DB schema and some code also were changed previously it was running fine both worker and beat.

Comand use to run celery worker

celery -A base worker -l info --detach --logfile=logs/celery.log -n celery_worker

No error after the process completes which takes around 80, 90 min to complete. After completion, there is no celery worker process running and the next task doesn't execute. What might be the issue here how can I debug it?

Back to Top