pyramid_celery
pyramid_celery copied to clipboard
Pyramid configuration with celery integration. Allows you to use pyramid .ini files to configure celery and have your pyramid configuration inside celery tasks.
More comment in PR: https://github.com/sontek/pyramid_celery/pull/94#issuecomment-828252103
Versions used: * Python: 3.9.4 * Celery: 5.0.5 * Pyramid: 2.0 * Pyramid-Celery: 4.0.0 Before openinig this issue a digged a lot and I think I kind of understand why...
$ ..\Scripts\celery -A pyramid_celery.celery_app worker --ini development.ini -------------- celery@PC v5.0.5 (singularity) --- ***** ----- -- ******* ---- Windows-7-6.1.7601-SP1 2021-04-25 09:05:13 - *** --- * --- - ** ---------- [config] -...
Is it possible that `Python 2.7` was meant to be here? https://github.com/sontek/pyramid_celery/blob/cf8aa80980e42f7235ad361874d3c35e19963b60/CHANGES.txt#L4
I noticed this lib does not support custom `celeryconfig` modules, like Celery itself does. I've filed PR #89 to allow that.
The pyramid_celery documentation currently says: > The reason it is a csv instead of using –ini-var multiple times is because of a bug in celery itself. When they fix the...
In reading the example, the term "task" is very overloaded. It refers to a model object, a property of that object, as well as celery's task concept. For example: ```...
it would be great if this supported joining the pyramid_tm transaction for example, if I call something an async task, it could defer sending the request to the broker until...
Hi John, Thanks for your hard work on this project, it makes things lot easier. I have realized that all my tasks are running twice, I was wondering if you...
with two instances of pceleryd running, wild clicking on "delete" links in the web interface made it possible to schedule multiple delete-tasks for the same TaskItem, which resulted in an...