forked from pool/python-celery
705913e9b9cee6ffe2a348f67402ab2a8484922ccd1b3231d66ec155ccc96c3f
- Now depends on kombu 2.2.5
- inspect now supports limit argument::
myapp.control.inspect(limit=1).ping()
- Beat: now works with timezone aware datetime's.
- Task classes inheriting from celery import Task
mistakingly enabled accept_magic_kwargs.
- Fixed bug in inspect scheduled (Issue #829).
- Beat: Now resets the schedule to upgrade to UTC.
- The celery worker command now works with eventlet/gevent.
Previously it would not patch the environment early enough.
- The celery command now supports extension commands
using setuptools entry-points.
Libraries can add additional commands to the celery
command by adding an entry-point like::
setup(
entry_points=[
'celery.commands': [
'foo = my.module:Command',
],
],
...)
The command must then support the interface of
celery.bin.base.Command.
- contrib.migrate: New utilities to move tasks from one queue to another.
- celery.contrib.migrate.move_tasks
- celery.contrib.migrate.move_task_by_id
- The task-sent event now contains exchange and routing_key
fields.
- Fixes bug with installing on Python 3.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=61
Description
No description provided
Languages
Diff
100%