Explorar el Código

Bumped version to 2.1.2 and updated Changelog

Ask Solem hace 15 años
padre
commit
be1f55f74e
Se han modificado 4 ficheros con 11 adiciones y 3 borrados
  1. 8 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 8 - 0
Changelog

@@ -31,8 +31,16 @@ Fixes
       You can re-enable this by using the `propagate` argument to
       `task.get_logger`.
 
+* A 2 second timeout for sending error e-mails has been added.
+
+    The mail server used should have as little latency as possible,
+    as the sending of error e-mails is currently blocking the worker.
+    Preferably the mailserver should be local.
+
 * celeryd: Now sends the `task-retried` event for retried tasks.
 
+   This means retried tasks will show as RETRY in the event monitors.
+
 * Logging should now handle utf-8 correctly.
 
 * celeryd: Added `exc_info` error logging messages.

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.1.1
+:Version: 2.1.2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (2, 1, 1)
+VERSION = (2, 1, 2)
 
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 2.1.1
+:Version: 2.1.2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/