15
0
forked from pool/python-celery

- Update to 2.3.2:

* Improved Contributing guide.
  * Now depends on Kombu 1.3.1.
  * Task.request now contains the current worker host name
    (Issue #460).
  * It is now easier for app subclasses to extend how they are
    pickled.
  * purge/discard_all was not working correctly (Issue #455).
  * he coloring of log messages didn’t handle non-ASCII data well
    (Issue #427).
  * [Windows] the multiprocessing pool tried to import os.kill even
    though this is not available there (Issue #450).
  * Fixes case where the worker could become unresponsive because of
    tasks exceeding the hard time limit.
  * The task-sent event was missing from the event reference.
  * ResultSet.iterate now returns results as they finish (Issue #459).
  * Retries will no longer be performed when tasks are called directly
    (using __call__).
  * Eventlet no longer crashes if autoscale is enabled.
  * py24 target removed from tox.ini.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=36
This commit is contained in:
Alexandre Rogoski
2011-09-08 01:45:37 +00:00
committed by Git OBS Bridge
parent 9b2177461e
commit 05ac4518a0
4 changed files with 30 additions and 6 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Thu Sep 8 01:42:58 UTC 2011 - alexandre@exatati.com.br
- Update to 2.3.2:
* Improved Contributing guide.
* Now depends on Kombu 1.3.1.
* Task.request now contains the current worker host name
(Issue #460).
* It is now easier for app subclasses to extend how they are
pickled.
* purge/discard_all was not working correctly (Issue #455).
* he coloring of log messages didnt handle non-ASCII data well
(Issue #427).
* [Windows] the multiprocessing pool tried to import os.kill even
though this is not available there (Issue #450).
* Fixes case where the worker could become unresponsive because of
tasks exceeding the hard time limit.
* The task-sent event was missing from the event reference.
* ResultSet.iterate now returns results as they finish (Issue #459).
* Retries will no longer be performed when tasks are called directly
(using __call__).
* Eventlet no longer crashes if autoscale is enabled.
* py24 target removed from tox.ini.
-------------------------------------------------------------------
Mon Aug 8 01:02:52 UTC 2011 - alexandre@exatati.com.br