File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3131 You can re-enable this by using the `propagate` argument to
3232 `task.get_logger`.
3333
34+ * A 2 second timeout for sending error e-mails has been added.
35+
36+ The mail server used should have as little latency as possible,
37+ as the sending of error e-mails is currently blocking the worker.
38+ Preferably the mailserver should be local.
39+
3440* celeryd: Now sends the `task-retried` event for retried tasks.
3541
42+ This means retried tasks will show as RETRY in the event monitors.
43+
3644* Logging should now handle utf-8 correctly.
3745
3846* celeryd: Added `exc_info` error logging messages.
Original file line number Diff line number Diff line change 44
55.. image :: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
66
7- :Version: 2.1.1
7+ :Version: 2.1.2
88:Web: http://celeryproject.org/
99:Download: http://pypi.python.org/pypi/celery/
1010:Source: http://github.com/ask/celery/
Original file line number Diff line number Diff line change 11"""Distributed Task Queue"""
22
3- VERSION = (2 , 1 , 1 )
3+ VERSION = (2 , 1 , 2 )
44
55__version__ = "." .join (map (str , VERSION [0 :3 ])) + "" .join (VERSION [3 :])
66__author__ = "Ask Solem"
Original file line number Diff line number Diff line change 1- :Version: 2.1.1
1+ :Version: 2.1.2
22:Web: http://celeryproject.org/
33:Download: http://pypi.python.org/pypi/celery/
44:Source: http://github.com/ask/celery/
You can’t perform that action at this time.
0 commit comments