15
0
forked from pool/python-celery

- Update to 2.2.2:

* Celerybeat could not read the schedule properly, so entries in
    :setting:`CELERYBEAT_SCHEDULE` would not be scheduled.
  * Task error log message now includes `exc_info` again.
  * The `eta` argument can now be used with `task.retry`.
    Previously it was overwritten by the countdown argument.
  * celeryd-multi/celeryd_detach: Now logs errors occuring when
    executing the `celeryd` command.
  * daemonizing cookbook: Fixed typo ``--time-limit 300`` ->
    ``--time-limit=300``
  * Colors in logging broke non-string objects in log messages.
  * ``setup_task_logger`` no longer makes assumptions about
    magic task kwargs.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=24
This commit is contained in:
Alexandre Rogoski
2011-02-03 22:39:18 +00:00
committed by Git OBS Bridge
parent 7f82e28f9d
commit 7cc988907e
4 changed files with 22 additions and 5 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Feb 3 22:37:08 UTC 2011 - alexandre@exatati.com.br
- Update to 2.2.2:
* Celerybeat could not read the schedule properly, so entries in
:setting:`CELERYBEAT_SCHEDULE` would not be scheduled.
* Task error log message now includes `exc_info` again.
* The `eta` argument can now be used with `task.retry`.
Previously it was overwritten by the countdown argument.
* celeryd-multi/celeryd_detach: Now logs errors occuring when
executing the `celeryd` command.
* daemonizing cookbook: Fixed typo ``--time-limit 300`` ->
``--time-limit=300``
* Colors in logging broke non-string objects in log messages.
* ``setup_task_logger`` no longer makes assumptions about
magic task kwargs.
-------------------------------------------------------------------
Wed Feb 2 17:33:41 UTC 2011 - alexandre@exatati.com.br