I\'m trying to implement a simple queue that performs one task at a time. Offloading tasks off开发者_如何学Go the main thread using Celery and setting concurrency=1 in the Celery config works fine, bu
For some reason, whenever I cr开发者_如何转开发eate and run a new Task in Celery there is a problem with returning the results. The first task returns perfectly, but for all subsequent tasks, the resu
I am trying to come up with a testing methodology for our django-celery project.I have read the notes in the documentation, but it didn\'t give me a good idea of what to actually do.I am not worried a
I have a pylons based webapp and i\'d love to use celery + rabbitmq for some time taking tasks. I\'ve taken a look at the celery-pylons project but I haven\'t succeeded in using it.
When I run the following command, it produces the following error: % python manage.py celeryd -l INFO~/Workspace/django-projects/project/src
I\'m using Django and Celery to communicate with RabbitMQ. I\'ve registered all of the tasks, and put them in the CELERY_IMPORTS tuple in my settings file. When I run a task, I get the \"not registere
I\'m writing a Django app that uses celery. So far 开发者_如何转开发I\'ve been running on Ubuntu, but I\'m trying to deploy to CentOS.
When I issue a runserver command, an ImportError is raised from djcelery (Django Celery). % python manage.py runserver
I have a task that runs in a Celerybeat instance. When that task is executed, it sometimes modifies a model object, which should fire off a post/pre_save signal, but it doesn\'t. The signal is not hap
So I just updated django to 1.2.3 and now when I try to run \'python manage.py shell\' to work in the django environment, I\'m getting the following error.