15
0
forked from pool/python-celery

- Update to 2.2.3:

- Now depends on Kombu 1.0.3
  - Task.retry now supports a max_retries argument, used to change
    the default value.
  - multiprocessing.cpu_count may raise NotImplementedError on
    platforms where this is not supported (Issue #320).
  - Coloring of log messages broke if the logged object was not a
    string.
  - Fixed several typos in the init script documentation.
  - A regression caused Task.exchange and Task.routing_key to no
    longer have any effect. This is now fixed.
  - Routing Userguide: Fixes typo, routers in CELERY_ROUTES must be
    instances, not classes.
  - celeryev did not create pidfile even though the --pidfile
    argument was set.
  - Task logger format was no longer used. (Issue #317).
      The id and name of the task is now part of the log message
      again.
  - A safe version of repr() is now used in strategic places to
    ensure objects with a broken __repr__ does not crash the
    worker, or otherwise make errors hard to understand (Issue #298).
  - Remote control command active_queues: did not account for
    queues added at runtime.
      In addition the dictionary replied by this command now has a
      different structure: the exchange key is now a dictionary
      containing the exchange declaration in full.
  - The -Q option to celeryd removed unused queue declarations, so
    routing of tasks could fail.
      Queues are no longer removed, but rather

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=25
This commit is contained in:
Alexandre Rogoski
2011-02-12 17:12:38 +00:00
committed by Git OBS Bridge
parent 7cc988907e
commit 2fc8ae3322
4 changed files with 43 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e1188384b6974a4b83308cb7699c0e0b2a06fb36bc8ee00d1616473fcee3815
size 1430918

3
celery-2.2.3.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e26df3222d5ad05a8f2a2600fa1ce3c0d37bcbc4f46a29bde2568f312e0e68c1
size 1430852

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Sat Feb 12 17:06:00 UTC 2011 - alexandre@exatati.com.br
- Update to 2.2.3:
- Now depends on Kombu 1.0.3
- Task.retry now supports a max_retries argument, used to change
the default value.
- multiprocessing.cpu_count may raise NotImplementedError on
platforms where this is not supported (Issue #320).
- Coloring of log messages broke if the logged object was not a
string.
- Fixed several typos in the init script documentation.
- A regression caused Task.exchange and Task.routing_key to no
longer have any effect. This is now fixed.
- Routing Userguide: Fixes typo, routers in CELERY_ROUTES must be
instances, not classes.
- celeryev did not create pidfile even though the --pidfile
argument was set.
- Task logger format was no longer used. (Issue #317).
The id and name of the task is now part of the log message
again.
- A safe version of repr() is now used in strategic places to
ensure objects with a broken __repr__ does not crash the
worker, or otherwise make errors hard to understand (Issue #298).
- Remote control command active_queues: did not account for
queues added at runtime.
In addition the dictionary replied by this command now has a
different structure: the exchange key is now a dictionary
containing the exchange declaration in full.
- The -Q option to celeryd removed unused queue declarations, so
routing of tasks could fail.
Queues are no longer removed, but rather
app.amqp.queues.consume_from() is used as the list of queues
to consume from.
This ensures all queues are available for routing purposes.
- celeryctl: Now supports the inspect active_queues command.
-------------------------------------------------------------------
Thu Feb 3 22:37:08 UTC 2011 - alexandre@exatati.com.br

View File

@@ -1,5 +1,5 @@
#
# spec file for package python-celery (Version 2.2.2)
# spec file for package python-celery (Version 2.2.3)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -17,7 +17,7 @@
Name: python-celery
Version: 2.2.2
Version: 2.2.3
Release: 1
License: BSD License
Summary: Distributed Task Queue
@@ -27,9 +27,9 @@ Source: celery-%{version}.tar.bz2
BuildRequires: python-devel
BuildRequires: python-setuptools
Requires: python-anyjson
Requires: python-carrot
Requires: python-daemon
Requires: python-django-unittest-depth
Requires: python-kambu
Requires: python-tyrant
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}