Ask Solem 14 лет назад
Родитель
Сommit
6a50b1c474
4 измененных файлов с 11 добавлено и 4 удалено
  1. 4 2
      README.rst
  2. 1 1
      celery/__init__.py
  3. 5 0
      celery/worker/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 4 - 2
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.2.0a5
+:Version: 2.2.0a6
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/
@@ -270,7 +270,7 @@ Wiki
 
 http://wiki.github.com/ask/celery/
 
-.. _contributing:
+.. _contributing-short:
 
 Contributing
 ============
@@ -281,6 +281,8 @@ You are highly encouraged to participate in the development
 of `celery`. If you don't like Github (for some reason) you're welcome
 to send regular patches.
 
+See also the Contributing section in the Documentation.
+
 .. _license:
 
 License

+ 1 - 1
celery/__init__.py

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

+ 5 - 0
celery/worker/__init__.py

@@ -148,6 +148,11 @@ class WorkController(object):
         self.db = db or conf.CELERYD_STATE_DB
         self.disable_rate_limits = disable_rate_limits or \
                                 conf.CELERY_DISABLE_RATE_LIMITS
+
+        # FIXME
+        # For some reason disable rate limits does not work currently,
+        # needs to be fixed for v2.2.0.
+        self.disable_rate_limits = False
         self.queues = queues
 
         self._finalize = Finalize(self, self.stop, exitpriority=1)

+ 1 - 1
docs/includes/introduction.txt

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