question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Finish the celery

See original GitHub issue

There 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:closed
  • Created 7 years ago
  • Comments:5 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
jamalexcommented, Aug 23, 2016

And here’s what you’ve saved us from, if the infection had gone unchecked:

0reactions
jamalexcommented, Aug 24, 2016

This celery surely isn’t getting out of hand!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found