|
5 | 5 | .. contents:: |
6 | 6 | :local: |
7 | 7 |
|
| 8 | +2.0.3 |
| 9 | +===== |
| 10 | +:release-date: TBA |
| 11 | + |
| 12 | +Fixes |
| 13 | +----- |
| 14 | + |
| 15 | +* celeryd: Properly handle connection errors while closing consumers. |
| 16 | + |
| 17 | +* celeryd: Events are now buffered while the connection is down, |
| 18 | + and re-sent when the connection is re-established. |
| 19 | + |
| 20 | +* No longer depends on the ``mailer`` package. |
| 21 | + |
| 22 | + This package had a namespace collision with ``django-mailer``, |
| 23 | + so its functionality was replaced. |
| 24 | + |
| 25 | +* Redis result backend: Redis doesn't have database names, |
| 26 | + database numbers. The default database is now 0. |
| 27 | + |
| 28 | +* :class:`~celery.task.control.inspect`: |
| 29 | + Was requesting an invalid command because of a typo. |
| 30 | + |
| 31 | + See http://github.com/ask/celery/issues/issue/170 |
| 32 | + |
| 33 | +* Worker crashed if the value of ``CELERY_TASK_ERROR_WHITELIST`` was |
| 34 | + not iterable |
| 35 | + |
| 36 | +* :func:`~celery.execute.apply`: Make sure ``kwargs["task_id"]`` is |
| 37 | + always set. |
| 38 | + |
| 39 | +* ``AsyncResult.traceback``: Now returns ``None``, instead of raising |
| 40 | + :exc:`KeyError` if traceback is missing. |
| 41 | + |
| 42 | +* :class:`~celery.task.control.inspect`: Replies did not work correctly |
| 43 | + if no destination was specified. |
| 44 | + |
| 45 | +* If a task wanted to store a result but keep the state in a custom |
| 46 | + state, ``encode_result`` returned None so nothing was passed |
| 47 | + to the backend. |
| 48 | + |
| 49 | +* celeryd: A warning is now emitted if sending of task error |
| 50 | + e-mails fails. |
| 51 | + |
| 52 | +* Debian init scripts: Commands should not run in a subshell |
| 53 | + |
| 54 | + See http://github.com/ask/celery/issues/issue/163 |
| 55 | + |
| 56 | +* Debian init scripts: Use abspath for celeryd to allow stat |
| 57 | + |
| 58 | + See http://github.com/ask/celery/issues/issue/162 |
| 59 | + |
| 60 | +Documentation |
| 61 | +------------- |
| 62 | + |
| 63 | +* getting-started/broker-installation: Fixed typo |
| 64 | + |
| 65 | + ``set_permissions ""`` -> ``set_permissions ".*"``. |
| 66 | + |
| 67 | +* Tasks Userguide: Added section on database transactions. |
| 68 | + |
| 69 | + See http://github.com/ask/celery/issues/issue/169 |
| 70 | + |
| 71 | +* Routing Userguide: Fixed typo ``"feed": -> {"queue": "feeds"}``. |
| 72 | + |
| 73 | + See http://github.com/ask/celery/issues/issue/169 |
| 74 | + |
| 75 | +* Documented the default values for the ``CELERYD_CONCURRENCY`` |
| 76 | + and ``CELERYD_PREFETCH_MULTIPLIER`` settings. |
| 77 | + |
| 78 | +* Tasks Userguide: Fixed typos in the subtask example |
| 79 | + |
| 80 | +* celery.signals: Documented worker_process_init. |
| 81 | + |
| 82 | +* Daemonization cookbook: Need to export DJANGO_SETTINGS_MODULE in |
| 83 | + ``/etc/default/celeryd``. |
| 84 | + |
| 85 | +* Added some more FAQs from stack overflow |
| 86 | + |
| 87 | +* Daemonization cookbook: Fixed typo ``CELERYD_LOGFILE/CELERYD_PIDFILE`` |
| 88 | + |
| 89 | + to ``CELERYD_LOG_FILE`` / ``CELERYD_PID_FILE`` |
| 90 | + |
| 91 | + Also added troubleshooting section for the init scripts. |
| 92 | + |
8 | 93 | 2.0.2 |
9 | 94 | ===== |
10 | 95 | :release-date: 2010-07-22 11:31 A.M CEST |
|
0 commit comments