Finish the celery
See original GitHub issueThere are still some remnants of Celery in the codebase:
➜ kolibri git:(master) ack-grep -i --python celery kolibri 1 1 11:39:13
kolibri/deployment/default/celeryconfig/default.py
2:CELERY_RESULT_BACKEND = 'db+sqlite:///results.sqlite3'
4:CELERY_TASK_SERIALIZER = 'pickle'
5:CELERY_RESULT_SERIALIZER = 'json'
6:CELERY_ACCEPT_CONTENT = ['pickle', 'json']
7:CELERY_TIMEZONE = 'Europe/Oslo'
8:CELERY_ENABLE_UTC = True
kolibri/tasks/management/commands/base.py
68: CELERY_PROGRESS_STATE_NAME = "PROGRESS"
And yes, I really don’t like Celery 😃
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Make celery wait for task to finish - Stack Overflow
I want celery to wait for a specific task to finish, therefore I installed the celery-results-backend beside celery itself.
Read more >result - Celery 5.2.7 documentation
Collect results as they return. Iterator, like get() will wait for the task to complete, but will also follow AsyncResult and ...
Read more >Asynchronous Tasks With Django and Celery - Real Python
In this tutorial, you'll learn how to integrate Celery and Django using Redis ... Note: Connecting Celery to a results back end is...
Read more >Asynchronous Tasks with Django and Celery - TestDriven.io
By the end of this article you will be able to: Integrate Celery into a Django app and create tasks; Containerize Django, Celery,...
Read more >5 tips for writing production-ready Celery tasks - Wolt Blog
As a practical example, consider a celery task which sends a push message to the end user about the order status.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
And here’s what you’ve saved us from, if the infection had gone unchecked:
This celery surely isn’t getting out of hand!