Merge pull request #972 from alexpearce/patch-1

Explicitly pass the Celery instance name.
This commit is contained in:
Armin Ronacher 2014-02-08 16:24:50 +00:00
commit 11003d0c29

View file

@ -86,7 +86,7 @@ disappointed to learn that your ``.wait()`` will never actually return.
That's because you also need to run celery. You can do that by running That's because you also need to run celery. You can do that by running
celery as a worker:: celery as a worker::
$ celery -A your_application worker $ celery -A your_application.celery worker
The ``your_application`` string has to point to your application's package The ``your_application`` string has to point to your application's package
or module that creates the `celery` object. or module that creates the `celery` object.